mirror of
https://github.com/vishvananda/netlink
synced 2024-12-18 04:34:42 +00:00
fe2e32c2fb
Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp>
26 lines
480 B
Go
26 lines
480 B
Go
// +build !linux
|
|
|
|
package netlink
|
|
|
|
type GenlOp struct{}
|
|
|
|
type GenlMulticastGroup struct{}
|
|
|
|
type GenlFamily struct{}
|
|
|
|
func (h *Handle) GenlFamilyList() ([]*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func GenlFamilyList() ([]*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func (h *Handle) GenlFamilyGet(name string) (*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func GenlFamilyGet(name string) (*GenlFamily, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|