mihomo/common/net/tcp_keepalive_go123_unix.go
2024-08-14 13:01:06 +08:00

16 lines
206 B
Go

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