From 81e7039c89e147fd315eef738eb2a4505ea7b715 Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Tue, 1 Dec 2009 21:04:02 +0100 Subject: mod_compression: Declaring the de-/compression pipes as local. --- plugins/mod_compression.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/mod_compression.lua') diff --git a/plugins/mod_compression.lua b/plugins/mod_compression.lua index 15a10059..6364c27f 100644 --- a/plugins/mod_compression.lua +++ b/plugins/mod_compression.lua @@ -139,10 +139,10 @@ module:add_handler({"s2sout_unauthed", "s2sout"}, "compressed", xmlns_compressio function(session ,stanza) session.log("debug", "Activating compression...") -- create deflate and inflate streams - deflate_stream = get_deflate_stream(session); + local deflate_stream = get_deflate_stream(session); if not deflate_stream then return end - inflate_stream = get_inflate_stream(session); + local inflate_stream = get_inflate_stream(session); if not inflate_stream then return end -- setup compression for session.w @@ -180,10 +180,10 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress session.log("info", method.." compression selected."); -- create deflate and inflate streams - deflate_stream = get_deflate_stream(session); + local deflate_stream = get_deflate_stream(session); if not deflate_stream then return end - inflate_stream = get_inflate_stream(session); + local inflate_stream = get_inflate_stream(session); if not inflate_stream then return end (session.sends2s or session.send)(st.stanza("compressed", {xmlns=xmlns_compression_protocol})); -- cgit v1.2.3