Clash.Meta/component/keepalive/tcp_keepalive_go123_unix.go

16 lines
212 B
Go
Raw Normal View History

2024-08-14 13:01:06 +08:00
//go:build go1.23 && unix
package keepalive
2024-08-14 13:01:06 +08:00
func SupportTCPKeepAliveIdle() bool {
return true
}
func SupportTCPKeepAliveInterval() bool {
return true
}
func SupportTCPKeepAliveCount() bool {
return true
}