mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-06 06:33:31 +03:00
parent
5af7f4e847
commit
288899a473
1 changed files with 1 additions and 3 deletions
|
@ -41,9 +41,8 @@ func ResolveInterface(name string) (*Interface, error) {
|
|||
ipNets := make([]netip.Prefix, 0, len(addrs))
|
||||
for _, addr := range addrs {
|
||||
var pf netip.Prefix
|
||||
switch addr.(type) {
|
||||
switch ipNet := addr.(type) {
|
||||
case *net.IPNet:
|
||||
ipNet := addr.(*net.IPNet)
|
||||
ip, _ := netip.AddrFromSlice(ipNet.IP)
|
||||
ones, bits := ipNet.Mask.Size()
|
||||
if bits == 32 {
|
||||
|
@ -51,7 +50,6 @@ func ResolveInterface(name string) (*Interface, error) {
|
|||
}
|
||||
pf = netip.PrefixFrom(ip, ones)
|
||||
case *net.IPAddr:
|
||||
ipNet := addr.(*net.IPAddr)
|
||||
ip, _ := netip.AddrFromSlice(ipNet.IP)
|
||||
ip = ip.Unmap()
|
||||
pf = netip.PrefixFrom(ip, ip.BitLen())
|
||||
|
|
Loading…
Add table
Reference in a new issue