mod_compression: More robust stanza processing.

This commit is contained in:
Waqas Hussain 2010-03-09 18:19:50 +05:00
parent b01e95ae14
commit a4d78f333f

View file

@ -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);