Skip to content
Snippets Groups Projects
Commit fe72d8be authored by gary's avatar gary
Browse files

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.	



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118452 138bc75d-0d04-0410-961f-82ee72b054a4
parent cf9498a8
No related branches found
No related tags found
No related merge requests found
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:
......
......@@ -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);
}
/**
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment