You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
using System;
|
|
|
|
namespace MediaBrowser.Model.Net
|
|
{
|
|
public class IpAddressInfo
|
|
{
|
|
public static IpAddressInfo Any = new IpAddressInfo("0.0.0.0", IpAddressFamily.InterNetwork);
|
|
public static IpAddressInfo IPv6Any = new IpAddressInfo("00000000000000000000", IpAddressFamily.InterNetworkV6);
|
|
public static IpAddressInfo Loopback = new IpAddressInfo("127.0.0.1", IpAddressFamily.InterNetwork);
|
|
public static IpAddressInfo IPv6Loopback = new IpAddressInfo("::1", IpAddressFamily.InterNetworkV6);
|
|
|
|
public string Address { get; set; }
|
|
public IpAddressInfo SubnetMask { get; set; }
|
|
public IpAddressFamily AddressFamily { get; set; }
|
|
|
|
public IpAddressInfo(string address, IpAddressFamily addressFamily)
|
|
{
|
|
Address = address;
|
|
AddressFamily = addressFamily;
|
|
}
|
|
|
|
public bool Equals(IpAddressInfo address)
|
|
{
|
|
return string.Equals(address.Address, Address, StringComparison.OrdinalIgnoreCase);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Address;
|
|
}
|
|
}
|
|
|
|
public enum IpAddressFamily
|
|
{
|
|
InterNetwork,
|
|
InterNetworkV6
|
|
}
|
|
}
|