mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
SASL: Simplified sasl_handler:mechanisms() to return a set, and not an array.
This commit is contained in:
parent
1e37132a58
commit
fa595a9dd3
3 changed files with 4 additions and 4 deletions
|
@ -175,8 +175,8 @@ module:hook("stream-features", function(event)
|
|||
end
|
||||
end
|
||||
features:tag("mechanisms", mechanisms_attr);
|
||||
for k, v in pairs(origin.sasl_handler:mechanisms()) do
|
||||
features:tag("mechanism"):text(v):up();
|
||||
for k in pairs(origin.sasl_handler:mechanisms()) do
|
||||
features:tag("mechanism"):text(k):up();
|
||||
end
|
||||
features:up();
|
||||
else
|
||||
|
|
|
@ -99,7 +99,7 @@ function method:mechanisms()
|
|||
end
|
||||
end
|
||||
self["possible_mechanisms"] = mechanisms;
|
||||
return array.collect(keys(mechanisms));
|
||||
return mechanisms;
|
||||
end
|
||||
|
||||
-- select a mechanism to use
|
||||
|
|
|
@ -135,7 +135,7 @@ function method:mechanisms()
|
|||
mechanisms[w] = true;
|
||||
end
|
||||
self.mechs = mechanisms
|
||||
return array.collect(keys(mechanisms));
|
||||
return mechanisms;
|
||||
end
|
||||
|
||||
-- select a mechanism to use
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue