From 000c485248e33f125e75e18b71ff9d1c69114a02 Mon Sep 17 00:00:00 2001 From: afocus Date: Wed, 24 Jan 2018 11:55:42 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E6=8B=A6=E6=88=AAuser=E5=90=8E=E5=AF=BC?= =?UTF-8?q?=E8=87=B4proxy=E6=96=AD=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }