mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +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
|
@ -638,6 +638,10 @@ function listener.register_outgoing(conn, session)
|
|||
initialize_session(session);
|
||||
end
|
||||
|
||||
function listener.ondetach(conn)
|
||||
sessions[conn] = nil;
|
||||
end
|
||||
|
||||
function check_auth_policy(event)
|
||||
local host, session = event.host, event.session;
|
||||
local must_secure = secure_auth;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue