mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-24 05:02:14 +08:00
16 lines
206 B
Go
16 lines
206 B
Go
//go:build go1.23 && unix
|
|
|
|
package net
|
|
|
|
func SupportTCPKeepAliveIdle() bool {
|
|
return true
|
|
}
|
|
|
|
func SupportTCPKeepAliveInterval() bool {
|
|
return true
|
|
}
|
|
|
|
func SupportTCPKeepAliveCount() bool {
|
|
return true
|
|
}
|