mod_websocket: Fix read timeout handler (thanks mt)

This commit is contained in:
Kim Alvefur 2016-04-06 14:44:51 +02:00
parent a96b736661
commit 52a8bdb8f5

View file

@ -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);