mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-11 13:01:00 +00:00
15 lines
212 B
Go
15 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
|
|
}
|