mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +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
|
|
}
|