s2smanager, mod_s2s: Move checking DNS timeout option to mod_s2s
authorKim Alvefur <zash@zash.se>
Thu, 10 May 2012 23:05:03 +0200
changeset 4832 6b3aec1e0d9f
parent 4831 da2c49a9ab99
child 4833 b7a6e86ab87d
s2smanager, mod_s2s: Move checking DNS timeout option to mod_s2s
core/s2smanager.lua
plugins/mod_s2s/s2sout.lib.lua
--- 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 = {};