Software /
code /
prosody
Changeset
4832:6b3aec1e0d9f
s2smanager, mod_s2s: Move checking DNS timeout option to mod_s2s
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 10 May 2012 23:05:03 +0200 |
parents | 4831:da2c49a9ab99 |
children | 4833:b7a6e86ab87d |
files | core/s2smanager.lua plugins/mod_s2s/s2sout.lib.lua |
diffstat | 2 files changed, 2 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/core/s2smanager.lua Thu May 10 23:01:10 2012 +0200 +++ b/core/s2smanager.lua Thu May 10 23:05:03 2012 +0200 @@ -17,12 +17,7 @@ local log = logger_init("s2smanager"); -local adns, dns = require "net.adns", require "net.dns"; local config = require "core.configmanager"; -local dns_timeout = config.get("*", "core", "dns_timeout") or 15; - ---FIXME: s2sout should create its own resolver w/ timeout -dns.settimeout(dns_timeout); local prosody = _G.prosody; incoming_s2s = {};
--- a/plugins/mod_s2s/s2sout.lib.lua Thu May 10 23:01:10 2012 +0200 +++ b/plugins/mod_s2s/s2sout.lib.lua Thu May 10 23:05:03 2012 +0200 @@ -26,6 +26,8 @@ local sources = {}; +local dns_timeout = module:get_option_number("dns_timeout", 15); +dns.settimeout(dns_timeout); local max_dns_depth = module:get_option_number("dns_max_depth", 3); local s2sout = {};