mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
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:
parent
257d0f104b
commit
899b6d53ae
7 changed files with 26 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue