package quicimport ()//go:generate sh -c "echo '// Code generated by go generate. DO NOT EDIT.\n// Source: sys_conn_buffers.go\n' > sys_conn_buffers_write.go && sed -e 's/SetReadBuffer/SetWriteBuffer/g' -e 's/setReceiveBuffer/setSendBuffer/g' -e 's/inspectReadBuffer/inspectWriteBuffer/g' -e 's/protocol\\.DesiredReceiveBufferSize/protocol\\.DesiredSendBufferSize/g' -e 's/forceSetReceiveBuffer/forceSetSendBuffer/g' -e 's/receive buffer/send buffer/g' sys_conn_buffers.go | sed '/^\\/\\/go:generate/d' >> sys_conn_buffers_write.go"func setReceiveBuffer( net.PacketConn) error { , := .(interface{ (int) error })if ! {returnerrors.New("connection doesn't allow setting of receive buffer size. Not a *net.UDPConn?") }varsyscall.RawConnif , := .(interface { () (syscall.RawConn, error) }); {varerror , = .()if != nil { = nil } }// The connection has a SetReadBuffer method, but we couldn't obtain a syscall.RawConn. // This shouldn't happen for a net.UDPConn, but is possible if the connection just implements the // net.PacketConn interface and the SetReadBuffer method. // We have no way of checking if increasing the buffer size actually worked.if == nil {return .(protocol.DesiredReceiveBufferSize) } , := inspectReadBuffer()if != nil {returnfmt.Errorf("failed to determine receive buffer size: %w", ) }if >= protocol.DesiredReceiveBufferSize {utils.DefaultLogger.Debugf("Conn has receive buffer of %d kiB (wanted: at least %d kiB)", /1024, protocol.DesiredReceiveBufferSize/1024)returnnil }// Ignore the error. We check if we succeeded by querying the buffer size afterward. _ = .(protocol.DesiredReceiveBufferSize) , := inspectReadBuffer()if < protocol.DesiredReceiveBufferSize {// Try again with RCVBUFFORCE on Linux _ = forceSetReceiveBuffer(, protocol.DesiredReceiveBufferSize) , = inspectReadBuffer()if != nil {returnfmt.Errorf("failed to determine receive buffer size: %w", ) } }if != nil {returnfmt.Errorf("failed to determine receive buffer size: %w", ) }if == {returnfmt.Errorf("failed to increase receive buffer size (wanted: %d kiB, got %d kiB)", protocol.DesiredReceiveBufferSize/1024, /1024) }if < protocol.DesiredReceiveBufferSize {returnfmt.Errorf("failed to sufficiently increase receive buffer size (was: %d kiB, wanted: %d kiB, got: %d kiB)", /1024, protocol.DesiredReceiveBufferSize/1024, /1024) }utils.DefaultLogger.Debugf("Increased receive buffer size to %d kiB", /1024)returnnil}
The pages are generated with Goldsv0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.