mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_admin_telnet: Print a message to open sessions when shutting down, including the reason
This commit is contained in:
parent
ef1b01c822
commit
d76ff8e08e
1 changed files with 6 additions and 0 deletions
|
@ -1130,6 +1130,12 @@ function def_env.http:list()
|
|||
return true;
|
||||
end
|
||||
|
||||
module:hook("server-stopping", function(event)
|
||||
for conn, session in pairs(sessions) do
|
||||
session.print("Shutting down: "..(event.reason or "unknown reason"));
|
||||
end
|
||||
end);
|
||||
|
||||
-------------
|
||||
|
||||
function printbanner(session)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue