mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Make linter happy
This commit is contained in:
parent
aa7007a947
commit
beeeba3388
12 changed files with 26 additions and 33 deletions
|
@ -13,9 +13,7 @@ func LocalAddrs() ([]netip.Addr, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return common.Map(interfaceAddrs, func(addr net.Addr) netip.Addr {
|
||||
return M.AddrFromNetAddr(addr)
|
||||
}), nil
|
||||
return common.Map(interfaceAddrs, M.AddrFromNetAddr), nil
|
||||
}
|
||||
|
||||
func IsPublicAddr(addr netip.Addr) bool {
|
||||
|
@ -27,7 +25,5 @@ func LocalPublicAddrs() ([]netip.Addr, error) {
|
|||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return common.Filter(publicAddrs, func(addr netip.Addr) bool {
|
||||
return IsPublicAddr(addr)
|
||||
}), nil
|
||||
return common.Filter(publicAddrs, IsPublicAddr), nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue