mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_c2s: Fire pre-closing event regardless of connected state
With mod_smacks, a session can outlive the connection, so whether the event is fired should not hinge on whether the session is connected or not. Helps mod_smacks remove some state.
This commit is contained in:
parent
3fe05657e3
commit
6c98ee025e
1 changed files with 3 additions and 3 deletions
|
@ -186,13 +186,13 @@ end
|
||||||
--- Session methods
|
--- Session methods
|
||||||
local function session_close(session, reason)
|
local function session_close(session, reason)
|
||||||
local log = session.log or log;
|
local log = session.log or log;
|
||||||
|
local close_event_payload = { session = session, reason = reason };
|
||||||
|
module:context(session.host):fire_event("pre-session-close", close_event_payload);
|
||||||
|
reason = close_event_payload.reason;
|
||||||
if session.conn then
|
if session.conn then
|
||||||
if session.notopen then
|
if session.notopen then
|
||||||
session:open_stream();
|
session:open_stream();
|
||||||
end
|
end
|
||||||
local close_event_payload = { session = session, reason = reason };
|
|
||||||
module:context(session.host):fire_event("pre-session-close", close_event_payload);
|
|
||||||
reason = close_event_payload.reason;
|
|
||||||
if reason then -- nil == no err, initiated by us, false == initiated by client
|
if reason then -- nil == no err, initiated by us, false == initiated by client
|
||||||
local stream_error = st.stanza("stream:error");
|
local stream_error = st.stanza("stream:error");
|
||||||
if type(reason) == "string" then -- assume stream error
|
if type(reason) == "string" then -- assume stream error
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue