mod_websocket: Set FIN flag on ping frames (fixes #773)

This commit is contained in:
Kim Alvefur 2016-11-04 13:28:10 +01:00
parent 24b2036f9e
commit 02919f0951

View file

@ -293,7 +293,7 @@ end
local function keepalive(event)
local session = event.session;
if session.open_stream == session_open_stream then
return session.conn:write(build_frame({ opcode = 0x9, }));
return session.conn:write(build_frame({ opcode = 0x9, FIN = true }));
end
end