# HG changeset patch # User michaelm # Date 1343683979 -3600 # Node ID 2a3bf352ef976678b478c06ed09a9efb8b098f26 # Parent 40418203511317e4fdce4da8e5291fed703ba1d5 7120665: Change Java SE spec so that external networking not required Reviewed-by: alanb diff -r 404182035113 -r 2a3bf352ef97 jdk/src/share/classes/java/net/NetworkInterface.java --- a/jdk/src/share/classes/java/net/NetworkInterface.java Mon Jul 30 04:57:27 2012 +0100 +++ b/jdk/src/share/classes/java/net/NetworkInterface.java Mon Jul 30 22:32:59 2012 +0100 @@ -326,8 +326,10 @@ } /** - * Returns all the interfaces on this machine. Returns null if no - * network interfaces could be found on this machine. + * Returns all the interfaces on this machine. The {@code Enumeration} + * contains at least one element, possibly representing a loopback + * interface that only supports communication between entities on + * this machine. * * NOTE: can use getNetworkInterfaces()+getInetAddresses() * to obtain all IP addresses for this node diff -r 404182035113 -r 2a3bf352ef97 jdk/src/share/classes/java/net/package.html --- a/jdk/src/share/classes/java/net/package.html Mon Jul 30 04:57:27 2012 +0100 +++ b/jdk/src/share/classes/java/net/package.html Mon Jul 30 22:32:59 2012 +0100 @@ -65,6 +65,7 @@
Sending and receiving with TCP sockets is done through InputStreams and OutputStreams which can be obtained via the {@link java.net.Socket#getInputStream} and {@link java.net.Socket#getOutputStream} methods.
The {@link java.net.NetworkInterface} class provides APIs to browse and query all the networking interfaces (e.g. ethernet connection or PPP endpoint) of the local machine. It is through that class that you can check if any of the local interfaces is configured to support IPv6.
+Note, all conforming implementations must support at least one {@code NetworkInterface} object, which must either be connected to a network, or be a "loopback" interface that can only communicate with entities on the same machine.
A number of classes in the java.net package do provide for a much higher level of abstraction and allow for easy access to resources on the network. The classes are: