mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_c2s: Fix traceback if session was destroyed while opening stream (thanks Ge0rG)
Could happen with the 'opportunistic_writes' setting, since then the stream opening is written directly to the socket, which can in turn trigger session destruction if the socket somehow got closed just after the other sent their stream header. Error happens later when it tries to `hosts[session.host == nil].events`
This commit is contained in:
parent
a4a008e046
commit
21fa25b27b
1 changed files with 3 additions and 0 deletions
|
@ -92,6 +92,9 @@ function stream_callbacks._streamopened(session, attr)
|
|||
|
||||
session:open_stream(host, attr.from);
|
||||
|
||||
-- Opening the stream can cause the stream to be closed
|
||||
if session.destroyed then return end
|
||||
|
||||
(session.log or log)("debug", "Sent reply <stream:stream> to client");
|
||||
session.notopen = nil;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue