s2s et al.: Add counters for connection state transitions

This commit is contained in:
Jonas Schäfer 2021-04-21 17:11:58 +02:00
parent b027ddcbfc
commit f18e33228d
3 changed files with 50 additions and 11 deletions

View file

@ -91,7 +91,7 @@ module:hook_tag(xmlns_sasl, "success", function (session)
session:reset_stream();
session:open_stream(session.from_host, session.to_host);
module:fire_event("s2s-authenticated", { session = session, host = session.to_host });
module:fire_event("s2s-authenticated", { session = session, host = session.to_host, mechanism = "EXTERNAL" });
return true;
end)
@ -192,7 +192,7 @@ local function s2s_external_auth(session, stanza)
session.external_auth = "succeeded";
session.sends2s(build_reply("success"));
module:log("info", "Accepting SASL EXTERNAL identity from %s", session.from_host);
module:fire_event("s2s-authenticated", { session = session, host = session.from_host });
module:fire_event("s2s-authenticated", { session = session, host = session.from_host, mechanism = mechanism });
session:reset_stream();
return true;
end