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:
Kim Alvefur 2021-03-03 13:26:38 +01:00
parent 9f53eecfa4
commit 494b53ce0b

View file

@ -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...");