mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 04:33:16 +08:00
16 lines
212 B
Go
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
|
|
}
|