prosody, mod_c2s, mod_s2s: Move closing of c2s and s2s sessions to respective plugins

This commit is contained in:
Kim Alvefur 2012-12-28 14:33:47 +01:00
parent de47f7e836
commit 3e2a8fbe1c
3 changed files with 18 additions and 37 deletions

View file

@ -506,6 +506,15 @@ end
s2sout.set_listener(listener);
module:hook("server-stopping", function(event)
local reason = event.reason;
for _, session in pairs(sessions) do
session:close{ condition = "system-shutdown", text = reason };
end
end,500);
module:provides("net", {
name = "s2s";
listener = listener;