mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Clear mask bit when reflecting ping frames (fixes #1484)
This commit is contained in:
parent
1ee37abc70
commit
0ada5ddd56
1 changed files with 1 additions and 0 deletions
|
@ -236,6 +236,7 @@ function handle_request(event)
|
|||
return;
|
||||
elseif opcode == 0x9 then -- Ping frame
|
||||
frame.opcode = 0xA;
|
||||
frame.MASK = false; -- Clients send masked frames, servers don't, see #1484
|
||||
conn:write(build_frame(frame));
|
||||
return "";
|
||||
elseif opcode == 0xA then -- Pong frame, MAY be sent unsolicited, eg as keepalive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue