uquic/sys_conn_no_oob.go
Marten Seemann 74be4d2755 add a function to set the UDP send buffer size
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.
2023-05-08 14:35:21 +03:00

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 }