mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-01 19:27:35 +03:00
14 lines
385 B
Go
14 lines
385 B
Go
//go:build !darwin && !linux && !freebsd && !windows
|
|
|
|
package quic
|
|
|
|
import "net"
|
|
|
|
func newConn(c net.PacketConn, supportsDF bool) (rawConn, error) {
|
|
return &basicConn{PacketConn: c, supportsDF: supportsDF}, nil
|
|
}
|
|
|
|
func inspectReadBuffer(any) (int, error) { return 0, nil }
|
|
func inspectWriteBuffer(any) (int, error) { return 0, nil }
|
|
|
|
func (i *packetInfo) OOB() []byte { return nil }
|