| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package internet
- import (
- "syscall"
- "golang.org/x/sys/windows"
- )
- const (
- TCP_FASTOPEN = 15 // nolint: revive,stylecheck
- )
- func setTFO(fd syscall.Handle, settings SocketConfig_TCPFastOpenState) error {
- switch settings {
- case SocketConfig_Enable:
- if err := syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, TCP_FASTOPEN, 1); err != nil {
- return err
- }
- case SocketConfig_Disable:
- if err := syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, TCP_FASTOPEN, 0); err != nil {
- return err
- }
- }
- return nil
- }
- func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
- if isTCPSocket(network) {
- if err := setTFO(syscall.Handle(fd), config.Tfo); err != nil {
- return err
- }
- if config.TcpKeepAliveIdle > 0 {
- if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.SOL_SOCKET, syscall.SO_KEEPALIVE, 1); err != nil {
- return newError("failed to set SO_KEEPALIVE", err)
- }
- }
- }
- if config.TxBufSize != 0 {
- if err := windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_SNDBUF, int(config.TxBufSize)); err != nil {
- return newError("failed to set SO_SNDBUF").Base(err)
- }
- }
- if config.RxBufSize != 0 {
- if err := windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_RCVBUF, int(config.TxBufSize)); err != nil {
- return newError("failed to set SO_RCVBUF").Base(err)
- }
- }
- return nil
- }
- func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
- if isTCPSocket(network) {
- if err := setTFO(syscall.Handle(fd), config.Tfo); err != nil {
- return err
- }
- if config.TcpKeepAliveIdle > 0 {
- if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.SOL_SOCKET, syscall.SO_KEEPALIVE, 1); err != nil {
- return newError("failed to set SO_KEEPALIVE", err)
- }
- }
- }
- if config.TxBufSize != 0 {
- if err := windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_SNDBUF, int(config.TxBufSize)); err != nil {
- return newError("failed to set SO_SNDBUF").Base(err)
- }
- }
- if config.RxBufSize != 0 {
- if err := windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_RCVBUF, int(config.TxBufSize)); err != nil {
- return newError("failed to set SO_RCVBUF").Base(err)
- }
- }
- return nil
- }
- func bindAddr(fd uintptr, ip []byte, port uint32) error {
- return nil
- }
- func setReuseAddr(fd uintptr) error {
- return nil
- }
- func setReusePort(fd uintptr) error {
- return nil
- }
|