mirror of
https://github.com/vishvananda/netlink.git
synced 2026-04-22 23:27:13 +08:00
a01829657b
fou module added a bunch of new attributes in commit https://github.com/torvalds/linux/commit/1713cb37bf671e5d98919536941a8b56337874fd which caused the old parsing logic failed, fix and add support for these attrributes.
17 lines
237 B
Go
17 lines
237 B
Go
//go:build !linux
|
|
// +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
|
|
}
|