diff options
author | Kim Alvefur <zash@zash.se> | 2012-03-11 19:14:28 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-03-11 19:14:28 +0100 |
commit | 26768f3e54805074211fc0846221acce5765f570 (patch) | |
tree | 7a1bb6a8dfb151f7573581d208a3e171110df3ce /core | |
parent | 4c152e2f3beafe251107fd66d0476d66e3fcc65c (diff) | |
download | prosody-26768f3e54805074211fc0846221acce5765f570.tar.gz prosody-26768f3e54805074211fc0846221acce5765f570.zip |
s2smanager, mod_s2s: Move import of dns_max_depth to mod_s2s
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index c05f7229..158b5461 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -37,7 +37,6 @@ local sha256_hash = require "util.hashes".sha256; local adns, dns = require "net.adns", require "net.dns"; local config = require "core.configmanager"; local dns_timeout = config.get("*", "core", "dns_timeout") or 15; -local max_dns_depth = config.get("*", "core", "dns_max_depth") or 3; local cfg_sources = config.get("*", "core", "s2s_interface") or config.get("*", "core", "interface"); local sources; |