aboutsummaryrefslogtreecommitdiffstats
path: root/net/http/server.lua
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
commita76091c611089e18bf72d13e306a798d16c35645 (patch)
treec4b452380f2980302effbdbb3e9cec75519d0944 /net/http/server.lua
parent0926e4557e9600392e4ad335239b399e0baa953f (diff)
downloadprosody-a76091c611089e18bf72d13e306a798d16c35645.tar.gz
prosody-a76091c611089e18bf72d13e306a798d16c35645.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/server.lua')
-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