ceeed6c32e
Signed-off-by: Ryan Cole <rcyoalne@gmail.com>
25 lines
480 B
Go
25 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
|
|
}
|