Merge 0.11->trunk

This commit is contained in:
Kim Alvefur 2020-01-02 10:52:47 +01:00
commit 09aca12997

View file

@ -223,6 +223,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