1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd
package raw
import (
"net"
"time"
"golang.org/x/net/bpf"
)
// Must implement net.PacketConn at compile-time.
var _ net.PacketConn = &packetConn{}
// packetConn is the generic implementation of net.PacketConn for this package.
type packetConn struct{}
// listenPacket is not currently implemented on this platform.
func listenPacket(ifi *net.Interface, proto uint16, cfg Config) (*packetConn, error) {
return nil, ErrNotImplemented
}
// ReadFrom is not currently implemented on this platform.
func (p *packetConn) ReadFrom(b []byte) (int, net.Addr, error) {
return 0, nil, ErrNotImplemented
}
// WriteTo is not currently implemented on this platform.
func (p *packetConn) WriteTo(b []byte, addr net.Addr) (int, error) {
return 0, ErrNotImplemented
}
// Close is not currently implemented on this platform.
func (p *packetConn) Close() error {
return ErrNotImplemented
}
// LocalAddr is not currently implemented on this platform.
func (p *packetConn) LocalAddr() net.Addr {
return nil
}
// SetDeadline is not currently implemented on this platform.
func (p *packetConn) SetDeadline(t time.Time) error {
return ErrNotImplemented
}
// SetReadDeadline is not currently implemented on this platform.
func (p *packetConn) SetReadDeadline(t time.Time) error {
return ErrNotImplemented
}
// SetWriteDeadline is not currently implemented on this platform.
func (p *packetConn) SetWriteDeadline(t time.Time) error {
return ErrNotImplemented
}
// SetBPF is not currently implemented on this platform.
func (p *packetConn) SetBPF(filter []bpf.RawInstruction) error {
return ErrNotImplemented
}
// SetPromisc is not currently implemented on this platform.
func (p *packetConn) SetPromiscuous(enable bool) error {
return ErrNotImplemented
}
// Stats is not currently implemented on this platform.
func (p *packetConn) Stats() (*Stats, error) {
return nil, ErrNotImplemented
}
|