From 568bd437337aeb99d2751cea4392ce4580cac1bf Mon Sep 17 00:00:00 2001 From: Mark Sturgill Date: Mon, 14 Apr 2014 02:55:16 -0700 Subject: [PATCH] RFC 6598 --- Scripts/Misc/ServerList.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Scripts/Misc/ServerList.cs b/Scripts/Misc/ServerList.cs index a98d7164d..3fb25b4fa 100644 --- a/Scripts/Misc/ServerList.cs +++ b/Scripts/Misc/ServerList.cs @@ -151,6 +151,7 @@ namespace Server.Misc // 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; @@ -163,6 +164,8 @@ namespace Server.Misc return true; else if ( Utility.IPMatch( "169.254.*", ip ) ) return true; + else if ( Utility.IPMatch( "100.64-127.*", ip ) ) + return true; else return false; }