mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_c2s: Close ports in a separate, earlier event from closing sessions
Lets other things step in and do things while c2s ports are closed, e.g. mod_smacks, or other modules with port handlers that forward to c2s.
This commit is contained in:
parent
14a7fdb2a8
commit
13dc49d1a7
1 changed files with 2 additions and 0 deletions
|
@ -428,7 +428,9 @@ module:hook("server-stopping", function(event)
|
|||
for _, netservice in pairs(module.items["net-provider"]) do
|
||||
pm.unregister_service(netservice.name, netservice);
|
||||
end
|
||||
end, -80);
|
||||
|
||||
module:hook("server-stopping", function(event)
|
||||
-- Close sessions
|
||||
local reason = event.reason;
|
||||
for _, session in pairs(sessions) do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue