mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.websocket: Make data masking configurable
This commit is contained in:
parent
65b12619a3
commit
89a01cc8d9
2 changed files with 3 additions and 3 deletions
|
@ -171,7 +171,7 @@ local function parse_close(data)
|
|||
return code, message
|
||||
end
|
||||
|
||||
local function build_close(code, message)
|
||||
local function build_close(code, message, mask)
|
||||
local data = pack_uint16be(code);
|
||||
if message then
|
||||
assert(#message<=123, "Close reason must be <=123 bytes");
|
||||
|
@ -180,7 +180,7 @@ local function build_close(code, message)
|
|||
return build_frame({
|
||||
opcode = 0x8;
|
||||
FIN = true;
|
||||
MASK = true;
|
||||
MASK = mask;
|
||||
data = data;
|
||||
});
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue