sing/transport/system/sockopt_other.go
2022-04-11 12:46:23 +08:00

13 lines
273 B
Go

//go:build !linux
package main
import "github.com/sagernet/sing/common/exceptions"
func TCPFastOpen(fd uintptr) error {
return exceptions.New("only available on linux")
}
func TProxy(fd uintptr, isIPv6 bool) error {
return exceptions.New("only available on linux")
}