mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
fix: fail to set KeepAliveIntervall #715
This commit is contained in:
parent
07b0e869b4
commit
04a8da4856
|
@ -51,6 +51,6 @@ func SplitHostPort(s string) (host, port string, hasPort bool, err error) {
|
||||||
func TCPKeepAlive(c net.Conn) {
|
func TCPKeepAlive(c net.Conn) {
|
||||||
if tcp, ok := c.(*net.TCPConn); ok {
|
if tcp, ok := c.(*net.TCPConn); ok {
|
||||||
_ = tcp.SetKeepAlive(true)
|
_ = tcp.SetKeepAlive(true)
|
||||||
_ = tcp.SetKeepAlivePeriod(KeepAliveInterval * time.Second)
|
_ = tcp.SetKeepAlivePeriod(KeepAliveInterval)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user