Comparison

plugins/mod_s2s/s2sout.lib.lua @ 6680:ae34b12c4335

mod_s2s/s2sout: Remove now unused config option dns_max_depth
author Kim Alvefur <zash@zash.se>
date Wed, 13 May 2015 21:43:05 +0200
parent 6631:45222bfb206f
child 6682:63f5870f9afe
comparison
equal deleted inserted replaced
6645:4f934cf03bc9 6680:ae34b12c4335
27 local sources = {}; 27 local sources = {};
28 local has_ipv4, has_ipv6; 28 local has_ipv4, has_ipv6;
29 29
30 local dns_timeout = module:get_option_number("dns_timeout", 15); 30 local dns_timeout = module:get_option_number("dns_timeout", 15);
31 dns.settimeout(dns_timeout); 31 dns.settimeout(dns_timeout);
32 local max_dns_depth = module:get_option_number("dns_max_depth", 3);
33 32
34 local s2sout = {}; 33 local s2sout = {};
35 34
36 local s2s_listener; 35 local s2s_listener;
37 36