2023-05-29 07:16:50 +00:00
|
|
|
//go:build !linux && !darwin
|
|
|
|
|
|
|
|
|
|
package netlink
|
|
|
|
|
|
|
|
|
|
func (n *NetLink) AddrList(link Link, family int) (
|
2024-10-11 19:20:48 +00:00
|
|
|
addresses []Addr, err error,
|
|
|
|
|
) {
|
2023-05-29 07:16:50 +00:00
|
|
|
panic("not implemented")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (n *NetLink) AddrReplace(Link, Addr) error {
|
|
|
|
|
panic("not implemented")
|
|
|
|
|
}
|