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"
) )
@ -12,8 +13,9 @@ type InterfaceFinder interface {
} }
type Interface struct { type Interface struct {
Index int Index int
MTU int MTU int
Name string Name string
Addresses []netip.Prefix Addresses []netip.Prefix
HardwareAddr net.HardwareAddr
} }

View file

@ -31,10 +31,11 @@ func (f *DefaultInterfaceFinder) Update() error {
return err return err
} }
interfaces = append(interfaces, Interface{ interfaces = append(interfaces, Interface{
Index: netIf.Index, Index: netIf.Index,
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