mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_websocket: Import util.timer and session close timeout config option (thanks fairuz)
This commit is contained in:
parent
4408ac9239
commit
1aac758bba
1 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
module:set_global();
|
||||
|
||||
local add_task = require "util.timer".add_task;
|
||||
local add_filter = require "util.filters".add_filter;
|
||||
local sha1 = require "util.hashes".sha1;
|
||||
local base64 = require "util.encodings".base64.encode;
|
||||
|
@ -24,6 +25,7 @@ local parse_close = websocket_frames.parse_close;
|
|||
|
||||
local t_concat = table.concat;
|
||||
|
||||
local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5);
|
||||
local consider_websocket_secure = module:get_option_boolean("consider_websocket_secure");
|
||||
local cross_domain = module:get_option("cross_domain_websocket");
|
||||
if cross_domain then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue