mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
5aed003747
2 changed files with 7 additions and 3 deletions
|
@ -1063,11 +1063,15 @@ function commands.check(arg)
|
|||
|
||||
local v6_supported = not not socket.tcp6;
|
||||
|
||||
for host, host_options in enabled_hosts() do
|
||||
for jid, host_options in enabled_hosts() do
|
||||
local all_targets_ok, some_targets_ok = true, false;
|
||||
local node, host = jid_split(jid);
|
||||
|
||||
local is_component = not not host_options.component_module;
|
||||
print("Checking DNS for "..(is_component and "component" or "host").." "..host.."...");
|
||||
print("Checking DNS for "..(is_component and "component" or "host").." "..jid.."...");
|
||||
if node then
|
||||
print("Only the domain part ("..host..") is used in DNS.")
|
||||
end
|
||||
local target_hosts = set.new();
|
||||
if not is_component then
|
||||
local res = dns.lookup("_xmpp-client._tcp."..idna.to_ascii(host)..".", "SRV");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue