This commit is contained in:
Sascha L. Teichmann 2016-04-06 11:45:59 +02:00
commit 0f01065fdf

View File

@ -96,15 +96,16 @@ func (tu *tileUpdater) checkIP(r *http.Request) bool {
return true return true
} }
var host []string idx := strings.LastIndex(r.RemoteAddr, ":")
if host = strings.SplitN(r.RemoteAddr, ":", 2); len(host) < 1 { if idx < 0 {
log.Printf("WARN: cannot extract host from '%s'.\n", r.RemoteAddr) log.Printf("WARN: cannot extract host from '%s'.\n", r.RemoteAddr)
return false return false
} }
var ip net.IP host := strings.Trim(r.RemoteAddr[:idx], "[]")
if ip = net.ParseIP(host[0]); ip == nil { ip := net.ParseIP(host)
log.Printf("WARN: cannot get IP for host '%s'.\n", host[0]) if ip == nil {
log.Printf("WARN: cannot get IP for host '%s'.\n", host)
return false return false
} }