1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/component/keepalive/tcp_keepalive_go123_unix.go
2024-09-25 15:10:53 +08:00

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
}