mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Don't compress a single zero group in IPv6 addresses to match behaviour of inet_ntop
This commit is contained in:
parent
5485202439
commit
066b90ccff
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue