mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 12:57:38 +03:00
Fix PrefixFromNet
This commit is contained in:
parent
29a135a1f3
commit
4903b51dd3
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ func PrefixFromNet(netAddr net.Addr) netip.Prefix {
|
||||||
switch addr := netAddr.(type) {
|
switch addr := netAddr.(type) {
|
||||||
case *net.IPNet:
|
case *net.IPNet:
|
||||||
bits, _ := addr.Mask.Size()
|
bits, _ := addr.Mask.Size()
|
||||||
return netip.PrefixFrom(AddrFromIP(addr.IP), bits)
|
return netip.PrefixFrom(AddrFromIP(addr.IP).Unmap(), bits)
|
||||||
default:
|
default:
|
||||||
return netip.Prefix{}
|
return netip.Prefix{}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue