This commit is contained in:
esrrhs 2019-11-05 09:23:52 +08:00
parent 91de7cb8f0
commit bf6270387e

View File

@ -191,7 +191,11 @@ func main() {
}
if len(*s5filter) > 0 {
geoip.Load(*s5ftfile)
err := geoip.Load(*s5ftfile)
if err != nil {
loggo.Error("Load Sock5 ip file ERROR: %s", err.Error())
return
}
}
filter := func(addr string) bool {
if len(*s5filter) <= 0 {