mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s: Keep the dns answer object around a while so plugins can look at it
This commit is contained in:
parent
39acad1765
commit
9c4985d9d8
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ function s2sout.attempt_connection(host_session, err)
|
|||
host_session.connecting = nil;
|
||||
if answer and #answer > 0 then
|
||||
log("debug", "%s has SRV records, handling...", to_host);
|
||||
local srv_hosts = {};
|
||||
local srv_hosts = { answer = answer };
|
||||
host_session.srv_hosts = srv_hosts;
|
||||
for _, record in ipairs(answer) do
|
||||
t_insert(srv_hosts, record.srv);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue