/* * Copyright (c) 2001, 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. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions.
*/
/* * @test * @bug 4469866 * @library /test/lib * @summary Connecting to a link-local IPv6 address should not * causes a SocketException to be thrown. * @library /test/lib * @build jdk.test.lib.NetworkConfiguration * jdk.test.lib.Platform * @run main LinkLocal * @run main/othervm -Djava.net.preferIPv4Stack=true LinkLocal
*/
/* * Create ServerSocket on wildcard address and then * try to connect Socket to link-local address.
*/
ServerSocket ss = new ServerSocket();
ss.bind(new InetSocketAddress(ia, 0));
Socket s = new Socket(); try {
s.connect(new InetSocketAddress(ia, ss.getLocalPort()));
/* * If an argument is provided ensure that it's * a link-local IPv6 address.
*/ if (args.length > 0) {
InetAddress ia = InetAddress.getByName(args[0]);
if ( !(ia instanceof Inet6Address) ||
!ia.isLinkLocalAddress()) { thrownew Exception(ia + " is not a link-local IPv6 address");
}
TestAddress(ia);
}
/* * If no argument is provided then enumerate the * local addresses and run the test on each link-local * IPv6 address.
*/ if (args.length == 0) {
List<Inet6Address> addrs = NetworkConfiguration.probe()
.ip6Addresses()
.filter(Inet6Address::isLinkLocalAddress)
.collect(Collectors.toList());
for (Inet6Address addr : addrs) {
TestAddress(addr);
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.