mirror of https://github.com/v2ray/v2ray-core
Remove keepalive settings
parent
51c2a2b880
commit
fc14b9346c
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue