mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Fix read timeout handler (thanks mt)
This commit is contained in:
parent
a96b736661
commit
52a8bdb8f5
1 changed files with 4 additions and 1 deletions
|
@ -291,7 +291,10 @@ function handle_request(event)
|
|||
end
|
||||
|
||||
local function keepalive(event)
|
||||
return conn:write(build_frame({ opcode = 0x9, }));
|
||||
local session = event.session;
|
||||
if session.open_stream == session_open_stream then
|
||||
return session.conn:write(build_frame({ opcode = 0x9, }));
|
||||
end
|
||||
end
|
||||
|
||||
module:hook("c2s-read-timeout", keepalive, -0.9);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue