k3s/vendor/github.com/vishvananda/netlink/fou_unspecified.go
Darren Shepherd 661988fb38 Update vendor
2019-09-27 16:54:32 -07:00

16 lines
219 B
Go

// +build !linux
package netlink
func FouAdd(f Fou) error {
return ErrNotImplemented
}
func FouDel(f Fou) error {
return ErrNotImplemented
}
func FouList(fam int) ([]Fou, error) {
return nil, ErrNotImplemented
}