0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

split host port

This commit is contained in:
Zack Scholl 2020-10-05 08:20:11 -07:00
parent b73c0cba22
commit 289f228915

View file

@ -278,7 +278,10 @@ var PrivateIPNetworks = []net.IPNet{
}
func IsLocalIP(ipaddress string) bool {
if strings.Contains("localhost") {
if strings.Contains(ipaddress, "localhost") {
return true
}
if strings.Contains(ipaddress, "fe80") {
return true
}
host, _, _ := net.SplitHostPort(ipaddress)