< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2000, 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) 2000, 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
*** 54,64 **** private boolean virtual = false; private static final NetworkInterface defaultInterface; private static final int defaultIndex; /* index of defaultInterface */ static { ! jdk.internal.loader.BootLoader.loadLibrary("net"); init(); defaultInterface = DefaultInterface.getDefault(); if (defaultInterface != null) { defaultIndex = defaultInterface.getIndex(); --- 54,64 ---- private boolean virtual = false; private static final NetworkInterface defaultInterface; private static final int defaultIndex; /* index of defaultInterface */ static { ! sun.security.action.LoadLibraryAction.privilegedLoadLibrary("net"); init(); defaultInterface = DefaultInterface.getDefault(); if (defaultInterface != null) { defaultIndex = defaultInterface.getIndex();
< prev index next >