mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_admin_socket: Fire event on admin client disconnect
This commit is contained in:
parent
957c69461f
commit
72b6c110f0
1 changed files with 6 additions and 1 deletions
|
@ -54,7 +54,12 @@ end);
|
||||||
|
|
||||||
local conn, sock;
|
local conn, sock;
|
||||||
|
|
||||||
local listeners = adminstream.server(sessions, fire_admin_event).listeners;
|
local admin_server = adminstream.server(sessions, fire_admin_event);
|
||||||
|
local listeners = admin_server.listeners;
|
||||||
|
|
||||||
|
module:hook_object_event(admin_server.events, "disconnected", function (event)
|
||||||
|
return module:fire_event("admin-disconnected", event);
|
||||||
|
end);
|
||||||
|
|
||||||
local function accept_connection()
|
local function accept_connection()
|
||||||
module:log("debug", "accepting...");
|
module:log("debug", "accepting...");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue