aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/Inet4Address.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2002-10-10 05:19:22 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2002-10-10 05:19:22 +0000
commit7393decb70ea1bd5f69faab0648dd64ae94b2082 (patch)
treef965712000cf470fbf9fff4d979f57fb6d1f2b12 /libjava/java/net/Inet4Address.java
parent402a402cabeb85a223952f822eb14af6c3094a4c (diff)
downloadgcc-7393decb70ea1bd5f69faab0648dd64ae94b2082.zip
gcc-7393decb70ea1bd5f69faab0648dd64ae94b2082.tar.gz
gcc-7393decb70ea1bd5f69faab0648dd64ae94b2082.tar.bz2
2002-10-08 Michael Koch <konqueror@gmx.de>
* java/net/HttpURLConnection.java (getPermission): New method. (getErrorStream): New stub method. (getHeaderFieldDate): New stub method. * java/net/Inet4Address.java: (isLinkLocalAddress): Typo fixed. * java/net/InetAddress.java: (readResolve): New stubbed method (for serialization). (isAnyLocalAddress): New stubbed method. (isLoopbackAddress): New stubbed method. (isLinkLocalAddress): New stubbed method. (isSiteLocalAddress): New stubbed method. (isMCGlobal): New stubbed method. (isMCNodeGlobal): New stubbed method. (isMCLinkLocal): New stubbed method. (isMCSiteLocal): New stubbed method. (isMCOrgLocal): New stubbed method. (getCanonicalHostName): New stubbed method. (getByAddress): Create instances of Inet4Address/Inet6Address, instead of InetAddress, documentation added. * java/net/MulticastSocket.java (getInterface): Removed FIXME. (getNetworkInterface): New method. (setNetworkInterface): New method. * java/net/NetworkInterface.java: (toString): Use property "line.separator" instead of "\n". * java/net/URLConnection.java (getContent): New stubbed method. * java/net/URLStreamHandler.java: (equals): New stubbed method. (hostsEqual): New stubbed method. (hashCode): New stubbed method. * java/net/natNetworkInterface.cc: (getRealNetworkInterfaces): Create Inet4Address object instead of InetAddress. From-SVN: r58002
Diffstat (limited to 'libjava/java/net/Inet4Address.java')
-rw-r--r--libjava/java/net/Inet4Address.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/net/Inet4Address.java b/libjava/java/net/Inet4Address.java
index 429919a..c635c67 100644
--- a/libjava/java/net/Inet4Address.java
+++ b/libjava/java/net/Inet4Address.java
@@ -113,7 +113,7 @@ public final class Inet4Address extends InetAddress
*/
public boolean isLinkLocalAddress ()
{
- // XXX: This seems to net exist with IPv4 addresses
+ // XXX: This seems to not exist with IPv4 addresses
return false;
}