diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-10 07:11:03 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-10 07:11:03 +0100 |
commit | b395681f115a39143fec23ea8c767c9969bb7db8 (patch) | |
tree | d0943f590a93ba7dd8b56cefabefe332ebf8282b | |
parent | eb07e55b143ffada5d2bf2b697996ee0bab4d2b5 (diff) | |
download | prosody-b395681f115a39143fec23ea8c767c9969bb7db8.tar.gz prosody-b395681f115a39143fec23ea8c767c9969bb7db8.zip |
mod_c2s: Set a default value for c2s_timeout (fixes #1036)
-rw-r--r-- | plugins/mod_c2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index f77c3741..9f33d3d8 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -23,7 +23,7 @@ local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams"; local log = module._log; -local c2s_timeout = module:get_option_number("c2s_timeout"); +local c2s_timeout = module:get_option_number("c2s_timeout", 300); local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5); local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true)); |