Add bind.Interface.Flags

This commit is contained in:
世界 2024-11-04 11:05:38 +08:00
parent d59ac57aaa
commit 72db784fc7
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 2 additions and 0 deletions

View file

@ -19,4 +19,5 @@ type Interface struct {
Name string
Addresses []netip.Prefix
HardwareAddr net.HardwareAddr
Flags net.Flags
}

View file

@ -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