mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Add control.Interface.HardwareAddr
This commit is contained in:
parent
1482471859
commit
dd8cd39ef5
2 changed files with 11 additions and 8 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue