mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
13 lines
220 B
Go
13 lines
220 B
Go
// +build !darwin,!linux
|
|
|
|
package quic
|
|
|
|
import "net"
|
|
|
|
func newConn(c net.PacketConn) (connection, error) {
|
|
return &basicConn{PacketConn: c}, nil
|
|
}
|
|
|
|
func inspectReadBuffer(net.PacketConn) (int, error) {
|
|
return 0, nil
|
|
}
|