2017-01-09 20:33:55 +01:00
|
|
|
//+build !linux
|
|
|
|
|
|
|
|
package netlink
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"runtime"
|
2017-02-28 22:59:37 +01:00
|
|
|
|
|
|
|
"golang.org/x/net/bpf"
|
2017-01-09 20:33:55 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// errUnimplemented is returned by all functions on platforms that
|
|
|
|
// cannot make use of netlink sockets.
|
|
|
|
errUnimplemented = fmt.Errorf("netlink sockets not implemented on %s/%s",
|
|
|
|
runtime.GOOS, runtime.GOARCH)
|
|
|
|
)
|
|
|
|
|
2017-11-02 12:30:34 +01:00
|
|
|
var _ Socket = &conn{}
|
2017-01-09 20:33:55 +01:00
|
|
|
|
|
|
|
// A conn is the no-op implementation of a netlink sockets connection.
|
|
|
|
type conn struct{}
|
|
|
|
|
|
|
|
// dial is the entry point for Dial. dial always returns an error.
|
2017-11-02 12:30:34 +01:00
|
|
|
func dial(family int, config *Config) (*conn, uint32, error) {
|
|
|
|
return nil, 0, errUnimplemented
|
2017-01-09 20:33:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Send always returns an error.
|
|
|
|
func (c *conn) Send(m Message) error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|
|
|
|
|
|
|
|
// Receive always returns an error.
|
|
|
|
func (c *conn) Receive() ([]Message, error) {
|
|
|
|
return nil, errUnimplemented
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close always returns an error.
|
|
|
|
func (c *conn) Close() error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|
|
|
|
|
|
|
|
// JoinGroup always returns an error.
|
|
|
|
func (c *conn) JoinGroup(group uint32) error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|
|
|
|
|
|
|
|
// LeaveGroup always returns an error.
|
|
|
|
func (c *conn) LeaveGroup(group uint32) error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|
|
|
|
|
2017-02-28 22:59:37 +01:00
|
|
|
// SetBPF always returns an error.
|
|
|
|
func (c *conn) SetBPF(filter []bpf.RawInstruction) error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|
|
|
|
|
2017-01-09 20:33:55 +01:00
|
|
|
// newError always returns an error.
|
|
|
|
func newError(errno int) error {
|
|
|
|
return errUnimplemented
|
|
|
|
}
|