Explorar el Código

continue to work even if failed to accept connection

V2Ray hace 10 años
padre
commit
9e078d533d
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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)
 	}