Comparison

plugins/mod_c2s.lua @ 8388:9ee56e9ad47a

mod_c2s: Set a default value for c2s_timeout (fixes #1036)
author Kim Alvefur <zash@zash.se>
date Fri, 10 Nov 2017 07:11:03 +0100
parent 8234:97b3ca502547
child 8390:4c629fde768c
child 8819:780d728f969f
comparison
equal deleted inserted replaced
8378:6a098961bc00 8388:9ee56e9ad47a
21 21
22 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams"; 22 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
23 23
24 local log = module._log; 24 local log = module._log;
25 25
26 local c2s_timeout = module:get_option_number("c2s_timeout"); 26 local c2s_timeout = module:get_option_number("c2s_timeout", 300);
27 local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5); 27 local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5);
28 local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true)); 28 local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true));
29 29
30 local measure_connections = module:measure("connections", "amount"); 30 local measure_connections = module:measure("connections", "amount");
31 31