Software /
code /
prosody
Diff
plugins/mod_s2s/s2sout.lib.lua @ 8268:e21d82551e05
Merge 0.10->trunk
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 26 Sep 2017 17:24:25 +0100 |
parent | 8267:42fad8465537 |
child | 8483:6d47b74926dd |
child | 8899:c72a6226ee31 |
line wrap: on
line diff
--- a/plugins/mod_s2s/s2sout.lib.lua Thu Sep 21 02:36:28 2017 +0200 +++ b/plugins/mod_s2s/s2sout.lib.lua Tue Sep 26 17:24:25 2017 +0100 @@ -49,6 +49,8 @@ initialize_filters(host_session); host_session.version = 1; + host_session.resolver = adns.resolver(); + -- Kick the connection attempting machine into life if not s2sout.attempt_connection(host_session) then -- Intentionally not returning here, the @@ -84,9 +86,7 @@ if not err then -- This is our first attempt log("debug", "First attempt to connect to %s, starting with SRV lookup...", to_host); host_session.connecting = true; - local handle; - handle = adns.lookup(function (answer) - handle = nil; + host_session.resolver:lookup(function (answer) local srv_hosts = { answer = answer }; host_session.srv_hosts = srv_hosts; host_session.srv_choice = 0; @@ -168,7 +168,7 @@ local have_other_result = not(has_ipv4) or not(has_ipv6) or false; if has_ipv4 then - handle4 = adns.lookup(function (reply, err) + handle4 = host_session.resolver:lookup(function (reply, err) handle4 = nil; if reply and reply[#reply] and reply[#reply].a then @@ -206,7 +206,7 @@ end if has_ipv6 then - handle6 = adns.lookup(function (reply, err) + handle6 = host_session.resolver:lookup(function (reply, err) handle6 = nil; if reply and reply[#reply] and reply[#reply].aaaa then