Update netlink_unspecified.go

AddrReplace was missing, could not compile on OSX
This commit is contained in:
Thomas Bucher 2019-07-25 15:26:30 +02:00 committed by Alessandro Boch
parent 28720742a4
commit b4e9f47a11
1 changed files with 4 additions and 0 deletions

View File

@ -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
}