mod_websocket: Clear mask bit when reflecting ping frames (fixes #1484)

This commit is contained in:
Kim Alvefur 2020-01-02 10:49:37 +01:00
parent 1ee37abc70
commit 0ada5ddd56

View file

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