mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sasl: Fix logic for when mechanisms with channel binding support are offered
This commit is contained in:
parent
9ea9c5719a
commit
add9033b9b
1 changed files with 8 additions and 6 deletions
|
@ -100,14 +100,16 @@ end
|
|||
function method:mechanisms()
|
||||
local current_mechs = {};
|
||||
for mech, _ in pairs(self.mechs) do
|
||||
if mechanism_channelbindings[mech] and self.profile.cb then
|
||||
local ok = false;
|
||||
for cb_name, _ in pairs(self.profile.cb) do
|
||||
if mechanism_channelbindings[mech][cb_name] then
|
||||
ok = true;
|
||||
if mechanism_channelbindings[mech] then
|
||||
if self.profile.cb then
|
||||
local ok = false;
|
||||
for cb_name, _ in pairs(self.profile.cb) do
|
||||
if mechanism_channelbindings[mech][cb_name] then
|
||||
ok = true;
|
||||
end
|
||||
end
|
||||
if ok == true then current_mechs[mech] = true; end
|
||||
end
|
||||
if ok == true then current_mechs[mech] = true; end
|
||||
else
|
||||
current_mechs[mech] = true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue