sing/transport/system/sockopt_other.go
2022-04-27 13:25:00 +08:00

9 lines
177 B
Go

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