mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.check: Fix A/AAAA check for proxy65 and http
When there are no records to return the return value from dns.lookup() might be nil or might be a table containing zero records, depending on which DNS library is used
This commit is contained in:
parent
8ebfaefcbb
commit
26e4b84130
1 changed files with 2 additions and 2 deletions
|
@ -608,8 +608,8 @@ local function check(arg)
|
|||
local function check_address(target)
|
||||
local A, AAAA = dns.lookup(idna.to_ascii(target), "A"), dns.lookup(idna.to_ascii(target), "AAAA");
|
||||
local prob = {};
|
||||
if use_ipv4 and not A then table.insert(prob, "A"); end
|
||||
if use_ipv6 and not AAAA then table.insert(prob, "AAAA"); end
|
||||
if use_ipv4 and not (A and #A > 0) then table.insert(prob, "A"); end
|
||||
if use_ipv6 and not (AAAA and #AAAA > 0) then table.insert(prob, "AAAA"); end
|
||||
return prob;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue