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)

This commit is contained in:
Matthew Wild 2014-08-29 11:54:34 +01:00
parent 257d0f104b
commit 899b6d53ae
7 changed files with 26 additions and 1 deletions

View file

@ -319,6 +319,10 @@ function listener.ondisconnect(conn, err)
end
end
function listener.ondetach(conn)
sessions[conn] = nil;
end
module:provides("net", {
name = "component";
private = true;