< prev index next >

src/java.base/share/classes/java/net/InetAddress.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1995, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1995, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 27,37 **** import java.util.NavigableSet; import java.util.ArrayList; import java.util.Objects; import java.util.Scanner; - import java.security.AccessController; import java.io.File; import java.io.ObjectStreamException; import java.io.ObjectStreamField; import java.io.IOException; import java.io.InvalidObjectException; --- 27,36 ----
*** 315,325 **** } else if (str.equalsIgnoreCase("system")) { preferIPv6Address = PREFER_SYSTEM_VALUE; } else { preferIPv6Address = PREFER_IPV4_VALUE; } ! jdk.internal.loader.BootLoader.loadLibrary("net"); SharedSecrets.setJavaNetInetAddressAccess( new JavaNetInetAddressAccess() { public String getOriginalHostName(InetAddress ia) { return ia.holder.getOriginalHostName(); } --- 314,324 ---- } else if (str.equalsIgnoreCase("system")) { preferIPv6Address = PREFER_SYSTEM_VALUE; } else { preferIPv6Address = PREFER_IPV4_VALUE; } ! LoadLibraryAction.privilegedLoadLibrary("net"); SharedSecrets.setJavaNetInetAddressAccess( new JavaNetInetAddressAccess() { public String getOriginalHostName(InetAddress ia) { return ia.holder.getOriginalHostName(); }
< prev index next >