aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2014-08-29 11:54:34 +0100
committerMatthew Wild <mwild1@gmail.com>2014-08-29 11:54:34 +0100
commit58edf57b1fd5e1dc2df3bcb79fd66d9c35738352 (patch)
treec4b452380f2980302effbdbb3e9cec75519d0944 /net/http
parent972f29756d18c945f9c1d5df219a89fd6962bcf3 (diff)
downloadprosody-58edf57b1fd5e1dc2df3bcb79fd66d9c35738352.tar.gz
prosody-58edf57b1fd5e1dc2df3bcb79fd66d9c35738352.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 'net/http')
-rw-r--r--net/http/server.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index 771adf10..7937f87c 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -142,6 +142,10 @@ function listener.ondisconnect(conn)
sessions[conn] = nil;
end
+function listener.ondetach(conn)
+ sessions[conn] = nil;
+end
+
function listener.onincoming(conn, data)
sessions[conn]:feed(data);
end