mod_s2s: Wait for remote to close any connection allowing incoming stanzas

Ie both s2sin and bidi-enabled s2sout.
This commit is contained in:
Kim Alvefur 2019-11-18 20:37:40 +01:00
parent 970ac1aa6c
commit 4216970602

View file

@ -533,7 +533,7 @@ local function session_close(session, reason, remote_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.type == "s2sin" then
if reason == nil and not session.notopen and session.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...");