mirror of
https://github.com/vishvananda/netlink
synced 2025-03-25 04:26:51 +00:00
Update netlink_unspecified with new Addr function prototypes
At some point the function prototypes for the `AddrAdd` and `AddrDel` functions got out of sync with addr_linix.go. This patch fixes it.
This commit is contained in:
parent
13fb20a978
commit
9f67bd458b
@ -143,11 +143,11 @@ func LinkList() ([]Link, error) {
|
||||
return nil, ErrNotImplemented
|
||||
}
|
||||
|
||||
func AddrAdd(link *Link, addr *Addr) error {
|
||||
func AddrAdd(link Link, addr *Addr) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func AddrDel(link *Link, addr *Addr) error {
|
||||
func AddrDel(link Link, addr *Addr) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user