mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Merge 0.9->trunk
This commit is contained in:
commit
2794871c57
2 changed files with 18 additions and 5 deletions
|
@ -23,6 +23,13 @@ local function new_ip(ipStr, proto)
|
|||
elseif proto ~= "IPv4" and proto ~= "IPv6" then
|
||||
return nil, "invalid protocol";
|
||||
end
|
||||
if proto == "IPv6" and ipStr:find('.', 1, true) then
|
||||
local changed;
|
||||
ipStr, changed = ipStr:gsub(":(%d+)%.(%d+)%.(%d+)%.(%d+)$", function(a,b,c,d)
|
||||
return (":%04X:%04X"):format(a*256+b,c*256+d);
|
||||
end);
|
||||
if changed ~= 1 then return nil, "invalid-address"; end
|
||||
end
|
||||
|
||||
return setmetatable({ addr = ipStr, proto = proto }, ip_mt);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue