mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
s2smanager: Fire s2s-destroyed event to mirror s2s-created
The existing events do not fire for unauthed sessions, for example (because the type does not match). I deemed changing their behaviour too risky, and the current behaviour may even be more desirable for some uses. This means we now have roughly paired events: - s2s-created -> s2s-destroyed (global only) - s2sin-established -> s2sin-destroyed (global + host) - s2sout-established -> s2sout-destroyed (global + host)
This commit is contained in:
parent
1a64d5d876
commit
30ef01a6cc
1 changed files with 1 additions and 0 deletions
|
@ -101,6 +101,7 @@ local function destroy_session(session, reason, bounce_reason)
|
|||
end
|
||||
|
||||
local event_data = { session = session, reason = reason };
|
||||
fire_event("s2s-destroyed", event_data);
|
||||
if session.type == "s2sout" then
|
||||
fire_event("s2sout-destroyed", event_data);
|
||||
if hosts[session.from_host] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue