diff --git a/server/proxy.go b/server/proxy.go index 09f3721e..78f2dc49 100644 --- a/server/proxy.go +++ b/server/proxy.go @@ -115,7 +115,7 @@ func (pxy *BaseProxy) startListenHandler(p Proxy, handler func(Proxy, frpNet.Con if !globalIRainIPPool.Check(c.RemoteAddr()) { c.Close() pxy.Warn("user connection not auth [%s]", useraddr) - return + continue } go handler(p, c) }