mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
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
|
|
}
|