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

14 lines
224 B
Go

package system
import (
"syscall"
)
const (
TCP_FASTOPEN = 23
TCP_FASTOPEN_CONNECT = 30
)
func TCPFastOpen(fd uintptr) error {
return syscall.SetsockoptInt(int(fd), syscall.SOL_TCP, TCP_FASTOPEN_CONNECT, 1)
}