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:
Matthew Wild 2021-11-12 13:30:39 +00:00
parent 1a64d5d876
commit 30ef01a6cc

View file

@ -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