mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_s2s: Check direction in bidi-aware style
Both session.incoming and session.outgoing are truthy here, but session.direction indicates the "real" direction in the way that matters for the order of events when opening or closing streams.
This commit is contained in:
parent
9f53eecfa4
commit
494b53ce0b
1 changed files with 1 additions and 1 deletions
|
@ -542,7 +542,7 @@ local function session_close(session, reason, remote_reason, bounce_reason)
|
|||
|
||||
-- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
|
||||
local conn = session.conn;
|
||||
if reason == nil and not session.notopen and session.incoming then
|
||||
if reason == nil and not session.notopen and session.direction == "incoming" then
|
||||
add_task(stream_close_timeout, function ()
|
||||
if not session.destroyed then
|
||||
session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue