diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-09-19 17:47:26 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-09-19 17:47:26 +0100 |
commit | 711ad31a2a9c6eb20d6a0492a8a18277be7760e9 (patch) | |
tree | 40513c4f70135bbe70a4929b422cc7c95ebf0d12 /core | |
parent | 44ea588e9845a66134fe3bd4fab9e9c8ba4d66eb (diff) | |
download | prosody-711ad31a2a9c6eb20d6a0492a8a18277be7760e9.tar.gz prosody-711ad31a2a9c6eb20d6a0492a8a18277be7760e9.zip |
s2smanager: Compatibility with domains which use CNAMEs
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index b42662f3..4113ae60 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -37,7 +37,7 @@ local sha256_hash = require "util.hashes".sha256; local dialback_secret = uuid_gen(); -local adns = require "net.adns"; +local adns, dns = require "net.adns", require "net.dns"; local dns_timeout = config.get("*", "core", "dns_timeout") or 60; @@ -240,6 +240,16 @@ function try_connect(host_session, connect_host, connect_port) handle = adns.lookup(function (reply) handle = nil; host_session.connecting = nil; + + -- COMPAT: This is a compromise for all you CNAME-(ab)users :) + if not (reply and reply[1] and reply[1].a) then + reply = dns.peek(connect_host, "CNAME", "IN"); + while reply and reply[1] and not reply[1].a and reply[1].cname do + reply = dns.peek(reply[1].cname, "A", "IN") or dns.peek(reply[1].cname, "CNAME", "IN"); + end + end + -- end of CNAME resolving + if reply and reply[1] and reply[1].a then log("debug", "DNS reply for %s gives us %s", connect_host, reply[1].a); return make_connect(host_session, reply[1].a, connect_port); |