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

16 lines
212 B
Go
Raw Normal View History

2024-08-14 13:01:06 +08:00
//go:build go1.23 && unix
package keepalive
2024-08-14 13:01:06 +08:00
func SupportTCPKeepAliveIdle() bool {
return true
}
func SupportTCPKeepAliveInterval() bool {
return true
}
func SupportTCPKeepAliveCount() bool {
return true
}