mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Set FIN flag on ping frames (fixes #773)
This commit is contained in:
parent
24b2036f9e
commit
02919f0951
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue