mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_s2s_bidi: Add provisions for advertising features to bidi peers
As introduced in XEP-xxxx: Stream Limits Advertisement
This commit is contained in:
parent
a46ae8cb89
commit
728ee0b92a
1 changed files with 3 additions and 1 deletions
|
@ -25,7 +25,9 @@ module:hook_tag("http://etherx.jabber.org/streams", "features", function (sessio
|
|||
if bidi then
|
||||
session.incoming = true;
|
||||
session.log("debug", "Requesting bidirectional stream");
|
||||
session.sends2s(st.stanza("bidi", { xmlns = xmlns_bidi }));
|
||||
local request_bidi = st.stanza("bidi", { xmlns = xmlns_bidi });
|
||||
module:fire_event("s2sout-stream-features", { origin = session, features = request_bidi });
|
||||
session.sends2s(request_bidi);
|
||||
end
|
||||
end
|
||||
end, 200);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue