mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
Add bind.Interface.Flags
This commit is contained in:
parent
d59ac57aaa
commit
72db784fc7
2 changed files with 2 additions and 0 deletions
|
@ -19,4 +19,5 @@ type Interface struct {
|
|||
Name string
|
||||
Addresses []netip.Prefix
|
||||
HardwareAddr net.HardwareAddr
|
||||
Flags net.Flags
|
||||
}
|
||||
|
|
|
@ -37,6 +37,7 @@ func (f *DefaultInterfaceFinder) Update() error {
|
|||
Name: netIf.Name,
|
||||
Addresses: common.Map(ifAddrs, M.PrefixFromNet),
|
||||
HardwareAddr: netIf.HardwareAddr,
|
||||
Flags: netIf.Flags,
|
||||
})
|
||||
}
|
||||
f.interfaces = interfaces
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue