mirror of
https://github.com/vishvananda/netlink
synced 2025-03-20 01:56:56 +00:00
fou module added a bunch of new attributes in commit
1713cb37bf
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
|
|
}
|