catch EPERM sendmsg errors for the very first packet on Linux (#4111)

This commit is contained in:
Marten Seemann 2023-10-17 15:23:33 +07:00 committed by GitHub
parent 262cf0a592
commit b344940f06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 57 additions and 4 deletions

View file

@ -13,7 +13,10 @@ import (
. "github.com/onsi/gomega"
)
var errGSO = &os.SyscallError{Err: unix.EIO}
var (
errGSO = &os.SyscallError{Err: unix.EIO}
errNotPermitted = &os.SyscallError{Syscall: "sendmsg", Err: unix.EPERM}
)
var _ = Describe("forcing a change of send and receive buffer sizes", func() {
It("forces a change of the receive buffer size", func() {