Comparison

plugins/mod_websocket.lua @ 13209:c8d949cf6b09

plugins: Switch to :get_option_period() for time range options Improves readability ("1 day" vs 86400) and centralizes validation.
author Kim Alvefur <zash@zash.se>
date Sun, 16 Jul 2023 20:49:33 +0200
parent 12977:74b9e05af71e
child 13213:50324f66ca2a
comparison
equal deleted inserted replaced
13208:a7c6ea1c5308 13209:c8d949cf6b09
29 local t_concat = table.concat; 29 local t_concat = table.concat;
30 30
31 local stanza_size_limit = module:get_option_number("c2s_stanza_size_limit", 1024 * 256); 31 local stanza_size_limit = module:get_option_number("c2s_stanza_size_limit", 1024 * 256);
32 local frame_buffer_limit = module:get_option_number("websocket_frame_buffer_limit", 2 * stanza_size_limit); 32 local frame_buffer_limit = module:get_option_number("websocket_frame_buffer_limit", 2 * stanza_size_limit);
33 local frame_fragment_limit = module:get_option_number("websocket_frame_fragment_limit", 8); 33 local frame_fragment_limit = module:get_option_number("websocket_frame_fragment_limit", 8);
34 local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5); 34 local stream_close_timeout = module:get_option_period("c2s_close_timeout", 5);
35 local consider_websocket_secure = module:get_option_boolean("consider_websocket_secure"); 35 local consider_websocket_secure = module:get_option_boolean("consider_websocket_secure");
36 local cross_domain = module:get_option("cross_domain_websocket"); 36 local cross_domain = module:get_option("cross_domain_websocket");
37 if cross_domain ~= nil then 37 if cross_domain ~= nil then
38 module:log("info", "The 'cross_domain_websocket' option has been deprecated"); 38 module:log("info", "The 'cross_domain_websocket' option has been deprecated");
39 end 39 end