mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Switch partial frame buffering to util.dbuffer
This improves performance and enforces stanza size limits earlier in the pipeline.
This commit is contained in:
parent
3989ff2ddc
commit
5a1c206ece
2 changed files with 10 additions and 5 deletions
|
@ -20,8 +20,8 @@ local unpack = table.unpack or unpack; -- luacheck: ignore 113
|
|||
|
||||
local t_concat = table.concat;
|
||||
local s_char= string.char;
|
||||
local s_pack = string.pack;
|
||||
local s_unpack = string.unpack;
|
||||
local s_pack = string.pack; -- luacheck: ignore 143
|
||||
local s_unpack = string.unpack; -- luacheck: ignore 143
|
||||
|
||||
if not s_pack and softreq"struct" then
|
||||
s_pack = softreq"struct".pack;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue