aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-10-06 15:27:39 +0200
committerKim Alvefur <zash@zash.se>2015-10-06 15:27:39 +0200
commit1aac758bba1f4a929740055b6ab7c418cd786502 (patch)
tree9f001052bdb4ef8671269752d2400002ca982148 /plugins
parent4408ac9239cd42bcb00d5db9e600910f2aeac891 (diff)
downloadprosody-1aac758bba1f4a929740055b6ab7c418cd786502.tar.gz
prosody-1aac758bba1f4a929740055b6ab7c418cd786502.zip
mod_websocket: Import util.timer and session close timeout config option (thanks fairuz)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_websocket.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua
index d3252980..897d2709 100644
--- a/plugins/mod_websocket.lua
+++ b/plugins/mod_websocket.lua
@@ -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