Add control.Interface.HardwareAddr

This commit is contained in:
世界 2024-06-01 20:39:54 +08:00
parent aca2a85545
commit ad4d59e2ed
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 11 additions and 8 deletions

View file

@ -1,6 +1,7 @@
package control
import (
"net"
"net/netip"
)
@ -12,8 +13,9 @@ type InterfaceFinder interface {
}
type Interface struct {
Index int
MTU int
Name string
Addresses []netip.Prefix
Index int
MTU int
Name string
Addresses []netip.Prefix
HardwareAddr net.HardwareAddr
}

View file

@ -31,10 +31,11 @@ func (f *DefaultInterfaceFinder) Update() error {
return err
}
interfaces = append(interfaces, Interface{
Index: netIf.Index,
MTU: netIf.MTU,
Name: netIf.Name,
Addresses: common.Map(ifAddrs, M.PrefixFromNet),
Index: netIf.Index,
MTU: netIf.MTU,
Name: netIf.Name,
Addresses: common.Map(ifAddrs, M.PrefixFromNet),
HardwareAddr: netIf.HardwareAddr,
})
}
f.interfaces = interfaces