Clash.Meta/common/net/tcp_keepalive_go123_unix.go

16 lines
206 B
Go
Raw Normal View History

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