LOGIN_GG_CHECK = getBooleanProperty(serverSettings, "GGCheck", true);
LRESTART_TIME = getIntProperty(serverSettings, "AutoRestart", -1);
String internalIpList = getProperty(serverSettings, "InternalIpList", "127.0.0.1,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255,172.16.0.0-172.16.31.255");
if(internalIpList.startsWith("NetList@"))
{
INTERNAL_NETLIST = new NetList();
INTERNAL_NETLIST.LoadFromFile(internalIpList.replaceFirst("NetList@", ""));
_log.info("Loaded " + INTERNAL_NETLIST.NetsCount() + " Internal Nets");
}
else
{