Server.Misc.ServerList.IsPrivateNetwork C# (CSharp) Méthode

IsPrivateNetwork() private static méthode

private static IsPrivateNetwork ( IPAddress ip ) : bool
ip System.Net.IPAddress
Résultat bool
        private static bool IsPrivateNetwork( IPAddress ip )
        {
            // 10.0.0.0/8
            // 172.16.0.0/12
            // 192.168.0.0/16
            // 169.254.0.0/16
            // 100.64.0.0/10 RFC 6598

            if ( ip.AddressFamily == AddressFamily.InterNetworkV6 )
                return false;

            if ( Utility.IPMatch( "192.168.*", ip ) )
                return true;
            else if ( Utility.IPMatch( "10.*", ip ) )
                return true;
            else if ( Utility.IPMatch( "172.16-31.*", ip ) )
                return true;
            else if ( Utility.IPMatch( "169.254.*", ip ) )
                return true;
            else if ( Utility.IPMatch( "100.64-127.*", ip ) )
                return true;
            else
                return false;
        }