mirror of https://github.com/vishvananda/netlink
Update netlink_unspecified.go
AddrReplace was missing, could not compile on OSX
This commit is contained in:
parent
28720742a4
commit
b4e9f47a11
|
@ -160,6 +160,10 @@ func AddrAdd(link Link, addr *Addr) error {
|
|||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func AddrReplace(link Link, addr *Addr) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func AddrDel(link Link, addr *Addr) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue