Add control.Interface.HardwareAddr

This commit is contained in:
世界 2024-06-01 20:39:54 +08:00
parent 1482471859
commit dd8cd39ef5
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 package control
import ( import (
"net"
"net/netip" "net/netip"
) )
@ -16,4 +17,5 @@ type Interface struct {
MTU int MTU int
Name string Name string
Addresses []netip.Prefix Addresses []netip.Prefix
HardwareAddr net.HardwareAddr
} }

View file

@ -35,6 +35,7 @@ func (f *DefaultInterfaceFinder) Update() error {
MTU: netIf.MTU, MTU: netIf.MTU,
Name: netIf.Name, Name: netIf.Name,
Addresses: common.Map(ifAddrs, M.PrefixFromNet), Addresses: common.Map(ifAddrs, M.PrefixFromNet),
HardwareAddr: netIf.HardwareAddr,
}) })
} }
f.interfaces = interfaces f.interfaces = interfaces