net.dns: Don't compress a single zero group in IPv6 addresses to match behaviour of inet_ntop

This commit is contained in:
Kim Alvefur 2017-12-01 04:50:20 +01:00
parent 5485202439
commit 066b90ccff

View file

@ -390,7 +390,7 @@ function resolver:AAAA(rr)
end
addr = table.concat(addr, ":"):gsub("%f[%x]0+(%x)","%1");
local zeros = {};
for item in addr:gmatch(":[0:]+:") do
for item in addr:gmatch(":[0:]+:[0:]+:") do
table.insert(zeros, item)
end
if #zeros == 0 then