mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
970ac1aa6c
commit
4216970602
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
|
||||
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...");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue