aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_net_multiplex.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-09-02 22:33:11 +0200
committerKim Alvefur <zash@zash.se>2014-09-02 22:33:11 +0200
commitab57f00b936342c599aadf901f85e5b29ee91baa (patch)
treeb4ffbcba45331b7fa86a9e1d1881e94b8fef9d42 /plugins/mod_net_multiplex.lua
parente41db733ad45978e4b3193af348c220623125a0e (diff)
parent3d6dafb89a05a6aad4d102266172e377d9491360 (diff)
downloadprosody-ab57f00b936342c599aadf901f85e5b29ee91baa.tar.gz
prosody-ab57f00b936342c599aadf901f85e5b29ee91baa.zip
Merge 0.9->0.10
Diffstat (limited to 'plugins/mod_net_multiplex.lua')
-rw-r--r--plugins/mod_net_multiplex.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_net_multiplex.lua b/plugins/mod_net_multiplex.lua
index d666b907..0dd3dc67 100644
--- a/plugins/mod_net_multiplex.lua
+++ b/plugins/mod_net_multiplex.lua
@@ -34,7 +34,6 @@ end
function listener.onincoming(conn, data)
if not data then return; end
local buf = buffers[conn];
- buffers[conn] = nil;
buf = buf and buf..data or data;
for service, multiplex_pattern in pairs(available_services) do
if buf:match(multiplex_pattern) then
@@ -57,6 +56,8 @@ function listener.ondisconnect(conn, err)
buffers[conn] = nil; -- warn if no buffer?
end
+listener.ondetach = listener.ondisconnect;
+
module:provides("net", {
name = "multiplex";
config_prefix = "";