mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_s2s: Wait for remote to close any connection allowing incoming stanzas
Ie both s2sin and bidi-enabled s2sout.
This commit is contained in:
parent
178dbdaa18
commit
80a58e551b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
-- Authenticated incoming stream may still be sending us stanzas, so wait for </stream:stream> from remote
|
||||||
local conn = session.conn;
|
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 ()
|
add_task(stream_close_timeout, function ()
|
||||||
if not session.destroyed then
|
if not session.destroyed then
|
||||||
session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
|
session.log("warn", "Failed to receive a stream close response, closing connection anyway...");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue