-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsock.go
43 lines (38 loc) · 1.03 KB
/
sock.go
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
//go:build linux || darwin || freebsd
// +build linux darwin freebsd
package netutils
import (
"crypto/tls"
"net"
"os"
"syscall"
)
// Configure SO_RCVBUF, thanks to https://github.com/dmachard/go-dns-collector/issues/61#issuecomment-1201199895
func SetSockRCVBUF(conn net.Conn, desired int, isTLS bool) (int, int, error) {
var file *os.File
var err error
if isTLS {
tlsConn := conn.(*tls.Conn).NetConn()
file, err = tlsConn.(*net.TCPConn).File()
if err != nil {
return 0, 0, err
}
} else {
file, err = conn.(*net.TCPConn).File()
if err != nil {
return 0, 0, err
}
}
// get the before value
before, err := syscall.GetsockoptInt(int(file.Fd()), syscall.SOL_SOCKET, syscall.SO_RCVBUF)
if err != nil {
return 0, 0, err
}
// set the new one and check the new actual value
syscall.SetsockoptInt(int(file.Fd()), syscall.SOL_SOCKET, syscall.SO_RCVBUF, desired)
actual, err := syscall.GetsockoptInt(int(file.Fd()), syscall.SOL_SOCKET, syscall.SO_RCVBUF)
if err != nil {
return 0, 0, err
}
return before, actual, nil
}