SASL: Simplified sasl_handler:mechanisms() to return a set, and not an array.

This commit is contained in:
Waqas Hussain 2010-07-14 19:56:57 +05:00
parent 1e37132a58
commit fa595a9dd3
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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

View file

@ -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