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 | 2b87305e904ea6d364ba072be3c409fb0b933dd4 (patch) | |
tree | d0943f590a93ba7dd8b56cefabefe332ebf8282b /plugins | |
parent | d2b548562ff5ed2d39874aa460cc573241c5fe35 (diff) | |
download | prosody-2b87305e904ea6d364ba072be3c409fb0b933dd4.tar.gz prosody-2b87305e904ea6d364ba072be3c409fb0b933dd4.zip |
mod_c2s: Set a default value for c2s_timeout (fixes #1036)
Diffstat (limited to 'plugins')
-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)); |