| 1 | // INetAddress.java -- An Internet Protocol (IP) address.
|
|---|
| 2 |
|
|---|
| 3 | /* Copyright (C) 1998, 1999, 2000 Free Software Foundation
|
|---|
| 4 |
|
|---|
| 5 | This file is part of libgcj.
|
|---|
| 6 |
|
|---|
| 7 | This software is copyrighted work licensed under the terms of the
|
|---|
| 8 | Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|---|
| 9 | details. */
|
|---|
| 10 |
|
|---|
| 11 | package java.net;
|
|---|
| 12 | import java.io.ObjectInputStream;
|
|---|
| 13 | import java.io.ObjectOutputStream;
|
|---|
| 14 | import java.io.IOException;
|
|---|
| 15 |
|
|---|
| 16 | /**
|
|---|
| 17 | * @author Per Bothner
|
|---|
| 18 | * @date January 6, 1999.
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | /*
|
|---|
| 22 | * Written using on-line Java Platform 1.2 API Specification, as well
|
|---|
| 23 | * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
|
|---|
| 24 | * (The latter turns out to have some errors ...)
|
|---|
| 25 | * Status: Believed complete and correct.
|
|---|
| 26 | */
|
|---|
|
|---|