mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_s2s: Mark stream as opened directly after opening stream, prevents session.close opening it again
This commit is contained in:
parent
5298b58b13
commit
ecb35aa0e9
1 changed files with 1 additions and 1 deletions
|
@ -349,6 +349,7 @@ function stream_callbacks.streamopened(session, attr)
|
|||
end
|
||||
|
||||
session:open_stream(session.to_host, session.from_host)
|
||||
session.notopen = nil;
|
||||
if session.version >= 1.0 then
|
||||
local features = st.stanza("stream:features");
|
||||
|
||||
|
@ -361,7 +362,6 @@ function stream_callbacks.streamopened(session, attr)
|
|||
log("debug", "Sending stream features: %s", tostring(features));
|
||||
session.sends2s(features);
|
||||
end
|
||||
session.notopen = nil;
|
||||
elseif session.direction == "outgoing" then
|
||||
session.notopen = nil;
|
||||
if not attr.id then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue