Browse Source

continue to work even if failed to accept connection

V2Ray 10 years ago
parent
commit
9e078d533d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      proxy/vmess/vmessin.go

+ 2 - 1
proxy/vmess/vmessin.go

@@ -53,7 +53,8 @@ func (handler *VMessInboundHandler) AcceptConnections(listener *net.TCPListener)
 	for handler.accepting {
 		connection, err := listener.AcceptTCP()
 		if err != nil {
-			return log.Error("Failed to accpet connection: %s", err.Error())
+			log.Error("Failed to accpet connection: %s", err.Error())
+			continue
 		}
 		go handler.HandleConnection(connection)
 	}