mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Put <sasl-channel-binding> in stream:features per XEP-0440 0.4.0
This commit is contained in:
parent
473c68770e
commit
afa583dfcd
1 changed files with 4 additions and 4 deletions
|
@ -321,15 +321,15 @@ module:hook("stream-features", function(event)
|
|||
for mechanism in usable_mechanisms do
|
||||
mechanisms:tag("mechanism"):text(mechanism):up();
|
||||
end
|
||||
features:add_child(mechanisms);
|
||||
if not channel_bindings:empty() then
|
||||
-- XXX XEP-0440 is Experimental
|
||||
mechanisms:tag("sasl-channel-binding", {xmlns='urn:xmpp:sasl-cb:0'})
|
||||
features:tag("sasl-channel-binding", {xmlns='urn:xmpp:sasl-cb:0'})
|
||||
for channel_binding in channel_bindings do
|
||||
mechanisms:tag("channel-binding", {type=channel_binding}):up()
|
||||
features:tag("channel-binding", {type=channel_binding}):up()
|
||||
end
|
||||
mechanisms:up();
|
||||
features:up();
|
||||
end
|
||||
features:add_child(mechanisms);
|
||||
return;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue