bool IsLanIp(string& ip) { if(ip.substr(,) == "10." || ip.substr(,) == "172." || ip.substr(,) == "192.") { return true; } else { return false; } }