diff options
author | Kim Alvefur <zash@zash.se> | 2016-03-23 23:21:03 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-03-23 23:21:03 +0100 |
commit | 41522cb84acb3639a8cdd494a4a6b1da04121318 (patch) | |
tree | b9bd3c72112d0721897cdcb03bcbb2f17119bd09 | |
parent | a50a9d99a069b8e7b4924389c2ebace1906310f9 (diff) | |
download | prosody-41522cb84acb3639a8cdd494a4a6b1da04121318.tar.gz prosody-41522cb84acb3639a8cdd494a4a6b1da04121318.zip |
mod_websocket: Send a ping on read timeout
-rw-r--r-- | plugins/mod_websocket.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index ecbfabdd..086eab62 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -290,6 +290,12 @@ function handle_request(event) return ""; end +local function keepalive(event) + return conn:write(build_frame({ opcode = 0x9, })); +end + +module:hook("c2s-read-timeout", keepalive, -0.9); + function module.add_host(module) module:depends("http"); module:provides("http", { @@ -300,4 +306,5 @@ function module.add_host(module) ["GET /"] = handle_request; }; }); + module:hook("c2s-read-timeout", keepalive, -0.9); end |