mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_s2s: Add new early s2s-connected events
Allows doing things based on connections rather than sessions, which may have been created before or after.
This commit is contained in:
parent
3c1c2064c6
commit
d274fa9a7e
1 changed files with 3 additions and 0 deletions
|
@ -820,11 +820,14 @@ function listener.onconnect(conn)
|
|||
session = s2s_new_incoming(conn);
|
||||
sessions[conn] = session;
|
||||
session.log("debug", "Incoming s2s connection");
|
||||
module:fire_event("s2sin-connected", { session = session })
|
||||
initialize_session(session);
|
||||
m_accepted_tcp_connections:with_labels():add(1)
|
||||
else -- Outgoing session connected
|
||||
module:fire_event("s2sout-connected", { session = session })
|
||||
session:open_stream(session.from_host, session.to_host);
|
||||
end
|
||||
module:fire_event("s2s-connected", { session = session })
|
||||
session.ip = conn:ip();
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue