diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-26 00:06:44 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-26 00:06:44 +0200 |
commit | 71b2b7782e075e596d29ee790879940ed946bfda (patch) | |
tree | 11f81ddc7bcc089676e965ba2b9171c2767911d5 /plugins/mod_s2s/s2sout.lib.lua | |
parent | b028ed1feed0ca36b0923533df89a184412cdc2c (diff) | |
parent | f458d7b46d85b2eb1bb78306d32f9fd0a5059bf7 (diff) | |
download | prosody-71b2b7782e075e596d29ee790879940ed946bfda.tar.gz prosody-71b2b7782e075e596d29ee790879940ed946bfda.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins/mod_s2s/s2sout.lib.lua')
-rw-r--r-- | plugins/mod_s2s/s2sout.lib.lua | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/mod_s2s/s2sout.lib.lua b/plugins/mod_s2s/s2sout.lib.lua index 942a618d..5214f4cf 100644 --- a/plugins/mod_s2s/s2sout.lib.lua +++ b/plugins/mod_s2s/s2sout.lib.lua @@ -169,18 +169,6 @@ function s2sout.try_connect(host_session, connect_host, connect_port, err) handle4 = adns.lookup(function (reply, err) handle4 = nil; - -- COMPAT: This is a compromise for all you CNAME-(ab)users :) - if not (reply and reply[#reply] and reply[#reply].a) then - local count = max_dns_depth; - reply = dns.peek(connect_host, "CNAME", "IN"); - while count > 0 and reply and reply[#reply] and not reply[#reply].a and reply[#reply].cname do - log("debug", "Looking up %s (DNS depth is %d)", tostring(reply[#reply].cname), count); - reply = dns.peek(reply[#reply].cname, "A", "IN") or dns.peek(reply[#reply].cname, "CNAME", "IN"); - count = count - 1; - end - end - -- end of CNAME resolving - if reply and reply[#reply] and reply[#reply].a then for _, ip in ipairs(reply) do log("debug", "DNS reply for %s gives us %s", connect_host, ip.a); |