split host port

This commit is contained in:
Zack Scholl 2020-10-05 08:20:11 -07:00
parent b73c0cba22
commit 289f228915
1 changed files with 4 additions and 1 deletions

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)