aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-02 18:04:56 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-02 18:04:56 +0500
commit310785e05e00e43bf71fdcfc585dc1c1232c2ced (patch)
tree0f9e256084ebe3b2c460ccc3cedceaf88f34731e /util/sasl.lua
parent42756c02be58eeaae3cf55c99b1b1d8604a57ba9 (diff)
downloadprosody-310785e05e00e43bf71fdcfc585dc1c1232c2ced.tar.gz
prosody-310785e05e00e43bf71fdcfc585dc1c1232c2ced.zip
util.sasl, util.sasl_cyrus: Load mechanisms list early rather than lazily, as they are always loaded anyway.
Diffstat (limited to 'util/sasl.lua')
-rw-r--r--util/sasl.lua24
1 files changed, 10 insertions, 14 deletions
diff --git a/util/sasl.lua b/util/sasl.lua
index 30e4b5df..3eb2db65 100644
--- a/util/sasl.lua
+++ b/util/sasl.lua
@@ -48,7 +48,15 @@ end
-- create a new SASL object which can be used to authenticate clients
function new(realm, profile)
- return setmetatable({ profile = profile, realm = realm }, method);
+ local mechanisms = {};
+ for backend, f in pairs(profile) do
+ if backend_mechanism[backend] then
+ for _, mechanism in ipairs(backend_mechanism[backend]) do
+ mechanisms[mechanism] = true;
+ end
+ end
+ end
+ return setmetatable({ profile = profile, realm = realm, mechs = mechanisms }, method);
end
-- get a fresh clone with the same realm and profile
@@ -58,19 +66,7 @@ end
-- get a list of possible SASL mechanims to use
function method:mechanisms()
- local mechanisms = self.mechs;
- if not mechanisms then
- mechanisms = {}
- for backend, f in pairs(self.profile) do
- if backend_mechanism[backend] then
- for _, mechanism in ipairs(backend_mechanism[backend]) do
- mechanisms[mechanism] = true;
- end
- end
- end
- self.mechs = mechanisms;
- end
- return mechanisms;
+ return self.mechs;
end
-- select a mechanism to use