You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
591 B
42 lines
591 B
6 years ago
|
/*
|
||
|
* Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
|
||
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package java.net;
|
||
|
|
||
|
/**
|
||
|
* Choose a network interface to be the default for
|
||
|
* outgoing IPv6 traffic that does not specify a scope_id (and which needs one).
|
||
|
*
|
||
|
* Platforms that do not require a default interface may return null
|
||
|
* which is what this implementation does.
|
||
|
*/
|
||
|
|
||
|
class DefaultInterface {
|
||
|
|
||
|
static NetworkInterface getDefault() {
|
||
|
return null;
|
||
|
}
|
||
|
}
|