diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-11-02 18:04:56 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-11-02 18:04:56 +0500 |
commit | 310785e05e00e43bf71fdcfc585dc1c1232c2ced (patch) | |
tree | 0f9e256084ebe3b2c460ccc3cedceaf88f34731e /util/sasl_cyrus.lua | |
parent | 42756c02be58eeaae3cf55c99b1b1d8604a57ba9 (diff) | |
download | prosody-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_cyrus.lua')
-rw-r--r-- | util/sasl_cyrus.lua | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/util/sasl_cyrus.lua b/util/sasl_cyrus.lua index aafd5455..1f901d57 100644 --- a/util/sasl_cyrus.lua +++ b/util/sasl_cyrus.lua @@ -100,6 +100,12 @@ function new(realm, service_name, app_name) end cyrussasl.setssf(sasl_i.cyrus, 0, 0xffffffff) + local mechanisms = {}; + local cyrus_mechs = cyrussasl.listmech(sasl_i.cyrus, nil, "", " ", ""); + for w in s_gmatch(cyrus_mechs, "[^ ]+") do + mechanisms[w] = true; + end + sasl_i.mechs = mechanisms; return setmetatable(sasl_i, method); end @@ -110,16 +116,7 @@ end -- get a list of possible SASL mechanims to use function method:mechanisms() - local mechanisms = self.mechs; - if not mechanisms then - mechanisms = {} - local cyrus_mechs = cyrussasl.listmech(self.cyrus, nil, "", " ", "") - for w in s_gmatch(cyrus_mechs, "[^ ]+") do - mechanisms[w] = true; - end - self.mechs = mechanisms - end - return mechanisms; + return self.mechs; end -- select a mechanism to use |