mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
17 lines
335 B
Go
17 lines
335 B
Go
//go:build !darwin && !linux && !freebsd && !windows
|
|
// +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 }
|