mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
* Add ability to force change the receive buffer size using SO_RCVBUFFORCE in Linux * Fix imports * Update test * Add sys_conn_helper_not_linux * Rename file * ignore the error on SetReadBuffer * also run unit tests as root --------- Co-authored-by: Marten Seemann <martenseemann@gmail.com>
45 lines
928 B
Go
45 lines
928 B
Go
//go:build linux
|
|
|
|
package quic
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"syscall"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const msgTypeIPTOS = unix.IP_TOS
|
|
|
|
const (
|
|
ipv4RECVPKTINFO = unix.IP_PKTINFO
|
|
ipv6RECVPKTINFO = unix.IPV6_RECVPKTINFO
|
|
)
|
|
|
|
const (
|
|
msgTypeIPv4PKTINFO = unix.IP_PKTINFO
|
|
msgTypeIPv6PKTINFO = unix.IPV6_PKTINFO
|
|
)
|
|
|
|
const batchSize = 8 // needs to smaller than MaxUint8 (otherwise the type of oobConn.readPos has to be changed)
|
|
|
|
func forceSetReceiveBuffer(c interface{}, bytes int) error {
|
|
conn, ok := c.(interface {
|
|
SyscallConn() (syscall.RawConn, error)
|
|
})
|
|
if !ok {
|
|
return errors.New("doesn't have a SyscallConn")
|
|
}
|
|
rawConn, err := conn.SyscallConn()
|
|
if err != nil {
|
|
return fmt.Errorf("couldn't get syscall.RawConn: %w", err)
|
|
}
|
|
var serr error
|
|
if err := rawConn.Control(func(fd uintptr) {
|
|
serr = unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_RCVBUFFORCE, bytes)
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
return serr
|
|
}
|