Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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
}