mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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;
|
return;
|
||||||
elseif opcode == 0x9 then -- Ping frame
|
elseif opcode == 0x9 then -- Ping frame
|
||||||
frame.opcode = 0xA;
|
frame.opcode = 0xA;
|
||||||
|
frame.MASK = false; -- Clients send masked frames, servers don't, see #1484
|
||||||
conn:write(build_frame(frame));
|
conn:write(build_frame(frame));
|
||||||
return "";
|
return "";
|
||||||
elseif opcode == 0xA then -- Pong frame, MAY be sent unsolicited, eg as keepalive
|
elseif opcode == 0xA then -- Pong frame, MAY be sent unsolicited, eg as keepalive
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue