mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_compression: Moving compression setup in a dedicated function.
This commit is contained in:
parent
b1743dfea1
commit
c7c629d9c8
1 changed files with 17 additions and 14 deletions
|
@ -108,21 +108,24 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress
|
|||
end
|
||||
|
||||
-- setup compression for session.w
|
||||
local old_send = session.send;
|
||||
local function setup_compression(session)
|
||||
local old_send = session.send;
|
||||
|
||||
session.send = function(t)
|
||||
local status, compressed, eof = pcall(deflate_stream, tostring(t), 'sync');
|
||||
if status == false then
|
||||
session:close({
|
||||
condition = "undefined-condition";
|
||||
text = compressed;
|
||||
extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
|
||||
});
|
||||
module:log("warn", compressed);
|
||||
return;
|
||||
end
|
||||
old_send(compressed);
|
||||
end;
|
||||
session.send = function(t)
|
||||
local status, compressed, eof = pcall(deflate_stream, tostring(t), 'sync');
|
||||
if status == false then
|
||||
session:close({
|
||||
condition = "undefined-condition";
|
||||
text = compressed;
|
||||
extra = st.stanza("failure", {xmlns="http://jabber.org/protocol/compress"}):tag("processing-failed");
|
||||
});
|
||||
module:log("warn", compressed);
|
||||
return;
|
||||
end
|
||||
old_send(compressed);
|
||||
end;
|
||||
end
|
||||
setup_compression(session);
|
||||
|
||||
-- setup decompression for session.data
|
||||
local function setup_decompression(session)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue