2006-11-03 Gary Benson <gbenson@redhat.com>
authorgary <gary@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Nov 2006 10:16:30 +0000 (10:16 +0000)
committergary <gary@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 3 Nov 2006 10:16:30 +0000 (10:16 +0000)
* java/net/Inet4Address.java
(FAMILY): Renamed to AF_INET.
(<init>, writeReplace): Reflect the above.
* java/net/Inet6Address.java
(FAMILY): Renamed to AF_INET6.
(<init>): Reflect the above.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118452 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/classpath/ChangeLog.gcj
libjava/classpath/java/net/Inet4Address.java
libjava/classpath/java/net/Inet6Address.java

index 9ed4b4c..4eeed87 100644 (file)
@@ -1,3 +1,12 @@
+2006-11-03  Gary Benson  <gbenson@redhat.com>
+
+       * java/net/Inet4Address.java
+       (FAMILY): Renamed to AF_INET.
+       (<init>, writeReplace): Reflect the above.
+       * java/net/Inet6Address.java
+       (FAMILY): Renamed to AF_INET6.
+       (<init>): Reflect the above.    
+
 2006-10-10  Tom Tromey  <tromey@redhat.com>
 
        PR classpath/29362:
index 28018a3..a8a726e 100644 (file)
@@ -59,14 +59,14 @@ public final class Inet4Address extends InetAddress
   /**
    * The address family of these addresses (used for serialization).
    */
-  private static final int FAMILY = 2; // AF_INET
+  private static final int AF_INET = 2;
 
   /**
    * Inet4Address objects are serialized as InetAddress objects.
    */
   private Object writeReplace() throws ObjectStreamException
   {
-    return new InetAddress(addr, hostName, FAMILY);
+    return new InetAddress(addr, hostName, AF_INET);
   }
   
   /**
@@ -79,7 +79,7 @@ public final class Inet4Address extends InetAddress
    */
   Inet4Address(byte[] addr, String host)
   {
-    super(addr, host, FAMILY);
+    super(addr, host, AF_INET);
   }
 
   /**
index 2015fe1..ef3c443 100644 (file)
@@ -95,7 +95,7 @@ public final class Inet6Address extends InetAddress
   /**
    * The address family of these addresses (used for serialization).
    */
-  private static final int FAMILY = 10; // AF_INET6
+  private static final int AF_INET6 = 10;
 
   /**
    * Create an Inet6Address object
@@ -105,7 +105,7 @@ public final class Inet6Address extends InetAddress
    */
   Inet6Address(byte[] addr, String host)
   {
-    super(addr, host, FAMILY);
+    super(addr, host, AF_INET6);
     // Super constructor clones the addr.  Get a reference to the clone.
     this.ipaddress = this.addr;
     ifname = null;