diff options
author | Kim Alvefur <zash@zash.se> | 2015-05-13 21:43:05 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-05-13 21:43:05 +0200 |
commit | c22dec3f1c5a28dcb7d71ecf16b48b545d1e5423 (patch) | |
tree | 927d16ca6a36a11aa85ce72fecf29a5596d92a4a | |
parent | 8b049732c734a2146fa78b6982b5fe1eed84b974 (diff) | |
download | prosody-c22dec3f1c5a28dcb7d71ecf16b48b545d1e5423.tar.gz prosody-c22dec3f1c5a28dcb7d71ecf16b48b545d1e5423.zip |
mod_s2s/s2sout: Remove now unused config option dns_max_depth
-rw-r--r-- | plugins/mod_s2s/s2sout.lib.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_s2s/s2sout.lib.lua b/plugins/mod_s2s/s2sout.lib.lua index 67b8fd0f..dc122af7 100644 --- a/plugins/mod_s2s/s2sout.lib.lua +++ b/plugins/mod_s2s/s2sout.lib.lua @@ -29,7 +29,6 @@ local has_ipv4, has_ipv6; 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 = {}; |