mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
catch EPERM sendmsg errors for the very first packet on Linux (#4111)
This commit is contained in:
parent
262cf0a592
commit
b344940f06
6 changed files with 57 additions and 4 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue