mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
9 lines
177 B
Go
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")
|
|
}
|