mirror of
https://github.com/status-im/status-go.git
synced 2025-01-26 14:40:08 +00:00
16 lines
292 B
Go
16 lines
292 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(interface{}) (int, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
func (i *packetInfo) OOB() []byte { return nil }
|