mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_compression: More robust stanza processing.
This commit is contained in:
parent
b01e95ae14
commit
a4d78f333f
1 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,8 @@ module:add_handler({"c2s_unauthed", "c2s"}, "compress", xmlns_compression_protoc
|
|||
end
|
||||
|
||||
-- checking if the compression method is supported
|
||||
local method = stanza:child_with_name("method")[1];
|
||||
local method = stanza:child_with_name("method");
|
||||
method = method and method[1];
|
||||
if method == "zlib" then
|
||||
-- create deflate and inflate streams
|
||||
local status, deflate_stream = pcall(zlib.deflate, compression_level);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue