diff --git a/proxy/socks/socks.go b/proxy/socks/socks.go index 90b175254..29bd0a28c 100644 --- a/proxy/socks/socks.go +++ b/proxy/socks/socks.go @@ -49,7 +49,7 @@ func (server *SocksServer) AcceptConnections(listener net.Listener) { connection, err := listener.Accept() if err != nil { log.Error("Socks failed to accept new connection %v", err) - return + continue } go server.HandleConnection(connection) }