mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
This function is the equivalent to the function used to set the UDP receive buffer size. It's so similar that code generation is used to make a copy of the setReceiveBuffer function.
70 lines
2.2 KiB
Go
70 lines
2.2 KiB
Go
// We need root permissions to use RCVBUFFORCE.
|
|
// This test is therefore only compiled when the root build flag is set.
|
|
// It can only succeed if the tests are then also run with root permissions.
|
|
//go:build linux && root
|
|
|
|
package quic
|
|
|
|
import (
|
|
"net"
|
|
"os"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("forcing a change of send and receive buffer sizes", func() {
|
|
It("forces a change of the receive buffer size", func() {
|
|
if os.Getuid() != 0 {
|
|
Fail("Must be root to force change the receive buffer size")
|
|
}
|
|
|
|
c, err := net.ListenPacket("udp", "127.0.0.1:0")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer c.Close()
|
|
syscallConn, err := c.(*net.UDPConn).SyscallConn()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
const small = 256 << 10 // 256 KB
|
|
Expect(forceSetReceiveBuffer(syscallConn, small)).To(Succeed())
|
|
|
|
size, err := inspectReadBuffer(syscallConn)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
// The kernel doubles this value (to allow space for bookkeeping overhead)
|
|
Expect(size).To(Equal(2 * small))
|
|
|
|
const large = 32 << 20 // 32 MB
|
|
Expect(forceSetReceiveBuffer(syscallConn, large)).To(Succeed())
|
|
size, err = inspectReadBuffer(syscallConn)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
// The kernel doubles this value (to allow space for bookkeeping overhead)
|
|
Expect(size).To(Equal(2 * large))
|
|
})
|
|
|
|
It("forces a change of the send buffer size", func() {
|
|
if os.Getuid() != 0 {
|
|
Fail("Must be root to force change the send buffer size")
|
|
}
|
|
|
|
c, err := net.ListenPacket("udp", "127.0.0.1:0")
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer c.Close()
|
|
syscallConn, err := c.(*net.UDPConn).SyscallConn()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
const small = 256 << 10 // 256 KB
|
|
Expect(forceSetSendBuffer(syscallConn, small)).To(Succeed())
|
|
|
|
size, err := inspectWriteBuffer(syscallConn)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
// The kernel doubles this value (to allow space for bookkeeping overhead)
|
|
Expect(size).To(Equal(2 * small))
|
|
|
|
const large = 32 << 20 // 32 MB
|
|
Expect(forceSetSendBuffer(syscallConn, large)).To(Succeed())
|
|
size, err = inspectWriteBuffer(syscallConn)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
// The kernel doubles this value (to allow space for bookkeeping overhead)
|
|
Expect(size).To(Equal(2 * large))
|
|
})
|
|
})
|