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.
14 lines
344 B
Go
14 lines
344 B
Go
//go:build !darwin && !linux && !freebsd && !windows
|
|
|
|
package quic
|
|
|
|
import "net"
|
|
|
|
func newConn(c net.PacketConn) (rawConn, error) {
|
|
return &basicConn{PacketConn: c}, nil
|
|
}
|
|
|
|
func inspectReadBuffer(any) (int, error) { return 0, nil }
|
|
func inspectWriteBuffer(any) (int, error) { return 0, nil }
|
|
|
|
func (i *packetInfo) OOB() []byte { return nil }
|