diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-18 15:29:31 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-18 15:29:31 +0100 |
commit | 836063da851d74d969505547bfe193bf2824b786 (patch) | |
tree | fda21a54555298a2369737f472bf288fcff6dce9 /util | |
parent | 5cea0b157002bff872b559c59aa77b30ec2634df (diff) | |
parent | 2794871c57db8605a99583de29df2168181715c2 (diff) | |
download | prosody-836063da851d74d969505547bfe193bf2824b786.tar.gz prosody-836063da851d74d969505547bfe193bf2824b786.zip |
Merge
Diffstat (limited to 'util')
-rw-r--r-- | util/ip.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/ip.lua b/util/ip.lua index 6ebc023b..20ea3dd7 100644 --- a/util/ip.lua +++ b/util/ip.lua @@ -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 |