mihomo/component/keepalive/tcp_keepalive_go123_unix.go
wwqgtxx a4e84f0479
Some checks are pending
Trigger CMFA Update / trigger-CMFA-update (push) Waiting to run
chore: better apply tcp keepalive to listeners
2024-09-25 15:10:53 +08:00

16 lines
212 B
Go

//go:build go1.23 && unix
package keepalive
func SupportTCPKeepAliveIdle() bool {
return true
}
func SupportTCPKeepAliveInterval() bool {
return true
}
func SupportTCPKeepAliveCount() bool {
return true
}