Add control.SetKeepAlivePeriod

This commit is contained in:
世界 2024-04-08 17:26:08 +08:00
parent e5825dcb59
commit 2fa039945c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,29 @@
package control
import (
"syscall"
"time"
_ "unsafe"
E "github.com/sagernet/sing/common/exceptions"
N "github.com/sagernet/sing/common/network"
"golang.org/x/sys/unix"
)
func SetKeepAlivePeriod(idle time.Duration, interval time.Duration) Func {
return func(network, address string, conn syscall.RawConn) error {
if N.NetworkName(network) != N.NetworkTCP {
return nil
}
return Raw(conn, func(fd uintptr) error {
return E.Errors(
unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPIDLE, int(roundDurationUp(idle, time.Second))),
unix.SetsockoptInt(int(fd), unix.IPPROTO_TCP, unix.TCP_KEEPINTVL, int(roundDurationUp(interval, time.Second))),
)
})
}
}
//go:linkname roundDurationUp net.roundDurationUp
func roundDurationUp(d time.Duration, to time.Duration) time.Duration

View file

@ -0,0 +1,11 @@
//go:build !linux
package control
import (
"time"
)
func SetKeepAlivePeriod(idle time.Duration, interval time.Duration) Func {
return nil
}