Software / code / prosody
Comparison
plugins/mod_s2s/s2sout.lib.lua @ 4833:b7a6e86ab87d
Merge with Zash
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Thu, 10 May 2012 23:10:56 +0100 |
| parent | 4832:6b3aec1e0d9f |
| child | 4906:89df1f03546a |
comparison
equal
deleted
inserted
replaced
| 4822:5ef05f32bc42 | 4833:b7a6e86ab87d |
|---|---|
| 24 | 24 |
| 25 local log = module._log; | 25 local log = module._log; |
| 26 | 26 |
| 27 local sources = {}; | 27 local sources = {}; |
| 28 | 28 |
| 29 local dns_timeout = module:get_option_number("dns_timeout", 15); | |
| 30 dns.settimeout(dns_timeout); | |
| 29 local max_dns_depth = module:get_option_number("dns_max_depth", 3); | 31 local max_dns_depth = module:get_option_number("dns_max_depth", 3); |
| 30 | 32 |
| 31 local s2sout = {}; | 33 local s2sout = {}; |
| 32 | 34 |
| 33 local s2s_listener; | 35 local s2s_listener; |