mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
util.ip: Do equality checking by comparing packed representation to avoid any variations
This commit is contained in:
parent
f31e73eb48
commit
e2ef028b09
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ local ip_mt = {
|
||||||
return ret;
|
return ret;
|
||||||
end,
|
end,
|
||||||
__tostring = function (ip) return ip.addr; end,
|
__tostring = function (ip) return ip.addr; end,
|
||||||
__eq = function (ipA, ipB) return ipA.addr == ipB.addr; end
|
__eq = function (ipA, ipB) return ipA.packed == ipB.packed; end
|
||||||
};
|
};
|
||||||
|
|
||||||
local hex2bits = {
|
local hex2bits = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue