Selaa lähdekoodia

Remove keepalive settings

V2Ray 10 vuotta sitten
vanhempi
commit
fc14b9346c
2 muutettua tiedostoa jossa 0 lisäystä ja 9 poistoa
  1. 0 5
      proxy/socks/socks.go
  2. 0 4
      proxy/vmess/vmessin.go

+ 0 - 5
proxy/socks/socks.go

@@ -7,7 +7,6 @@ import (
 	"net"
 	"strconv"
 	"sync"
-	"time"
 
 	"github.com/v2ray/v2ray-core"
 	"github.com/v2ray/v2ray-core/common/log"
@@ -57,10 +56,6 @@ func (server *SocksServer) AcceptConnections(listener net.Listener) {
 		if err != nil {
 			log.Error("Error on accepting socks connection: %v", err)
 		}
-		if tcpConn, ok := connection.(*net.TCPConn); ok {
-			tcpConn.SetKeepAlive(true)
-			tcpConn.SetKeepAlivePeriod(4 * time.Second)
-		}
 		go server.HandleConnection(connection)
 	}
 }

+ 0 - 4
proxy/vmess/vmessin.go

@@ -54,10 +54,6 @@ func (handler *VMessInboundHandler) AcceptConnections(listener net.Listener) err
 		if err != nil {
 			return log.Error("Failed to accpet connection: %s", err.Error())
 		}
-		if tcpConn, ok := connection.(*net.TCPConn); ok {
-			tcpConn.SetKeepAlive(true)
-			tcpConn.SetKeepAlivePeriod(4 * time.Second)
-		}
 		go handler.HandleConnection(connection)
 	}
 	return nil