| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // System.Net.IPAddress.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Net {
- // <remarks>
- // Encapsulates an IP Address.
- // </remarks>
- public class IPAddress {
- public uint address;
-
- public const uint InaddrAny = 0;
- public const uint InaddrBroadcast = 0xffffffff;
- public const uint InaddrLoopback = 0x7f000001;
- public const uint InaddrNone = 0xffffffff;
-
- // <summary>
- // Constructor from a 32-bit constant.
- // </summary>
- public IPAddress (uint address)
- {
- this.address = address;
- }
- // <summary>
- // Constructor from a dotted quad notation.
- // </summary>
- public IPAddress (string ip)
- {
- string[] ips = ip.Split (new char[] {'.'});
- int i;
- uint a = 0;
- for (i = 0; i < ips.Length; i++)
- a = (a << 8) | (UInt16.Parse(ips [i]));
- address = a;
- }
- // <summary>
- // Used to tell whether an address is a loopback.
- // </summary>
- // <param name="addr">Address to compare</param>
- // <returns></returns>
- public static bool IsLoopback (IPAddress addr)
- {
- return addr.address == InaddrLoopback;
- }
- // <summary>
- // Overrides System.Object.ToString to return
- // this object rendered in a quad-dotted notation
- // </summary>
- public override string ToString ()
- {
- return ToString (address);
- }
- // <summary>
- // Returns this object rendered in a quad-dotted notation
- // </summary>
- public static string ToString (uint addr)
- {
- return (addr >> 24).ToString () + "." +
- ((addr >> 16) & 0xff).ToString () + "." +
- ((addr >> 8) & 0xff).ToString () + "." +
- (addr & 0xff).ToString ();
- }
- // <returns>
- // Whether both objects are equal.
- // </returns>
- public override bool Equals (object other)
- {
- if (other is System.Net.IPAddress){
- return address == ((System.Net.IPAddress) other).address;
- }
- return false;
- }
- public override int GetHashCode ()
- {
- return (int)address;
- }
- }
-
- }
|