mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.ip: Convert the correct IP to IPv6-mapped for comparison (fixes traceback, possibly invalid result)
This commit is contained in:
parent
d6405de8e2
commit
9448c27667
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ function match(ipA, ipB, bits)
|
|||
if ipA.proto == "IPv4" then
|
||||
ipA = ipA.toV4mapped;
|
||||
elseif ipB.proto == "IPv4" then
|
||||
ipB = ipA.toV4mapped;
|
||||
ipB = ipB.toV4mapped;
|
||||
bits = bits + (128 - 32);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue