mod_saslauth: Put <sasl-channel-binding> in stream:features per XEP-0440 0.4.0

This commit is contained in:
Matthew Wild 2022-09-21 15:00:06 +01:00
parent 473c68770e
commit afa583dfcd

View file

@ -321,15 +321,15 @@ module:hook("stream-features", function(event)
for mechanism in usable_mechanisms do for mechanism in usable_mechanisms do
mechanisms:tag("mechanism"):text(mechanism):up(); mechanisms:tag("mechanism"):text(mechanism):up();
end end
features:add_child(mechanisms);
if not channel_bindings:empty() then if not channel_bindings:empty() then
-- XXX XEP-0440 is Experimental -- 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 for channel_binding in channel_bindings do
mechanisms:tag("channel-binding", {type=channel_binding}):up() features:tag("channel-binding", {type=channel_binding}):up()
end end
mechanisms:up(); features:up();
end end
features:add_child(mechanisms);
return; return;
end end