diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-08-29 11:54:34 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-08-29 11:54:34 +0100 |
commit | 899b6d53ae45cae3ed7dbe9dfbca31c1ab812db3 (patch) | |
tree | c4b452380f2980302effbdbb3e9cec75519d0944 /plugins/mod_net_multiplex.lua | |
parent | 257d0f104b61bac50f946c4eca9bd973110fce5d (diff) | |
download | prosody-899b6d53ae45cae3ed7dbe9dfbca31c1ab812db3.tar.gz prosody-899b6d53ae45cae3ed7dbe9dfbca31c1ab812db3.zip |
net.http, net.http.server, mod_c2s, mod_s2s, mod_component, mod_admin_telnet, mod_net_multiplex: Add ondetach to release connection from 'sessions' table (or equivalent)
Diffstat (limited to 'plugins/mod_net_multiplex.lua')
-rw-r--r-- | plugins/mod_net_multiplex.lua | 3 |
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 = ""; |