diff options
author | Tobias Markmann <tm@ayena.de> | 2009-08-28 19:43:33 +0200 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2009-08-28 19:43:33 +0200 |
commit | c73807ad0892ac4d205740786ae2fbfcd351e03f (patch) | |
tree | 913b3621aa91cc3a53fd6662736d16b0fa315b78 /util/sasl.lua | |
parent | cc716d31b6b0e2a6f764fd19832175e30a981c75 (diff) | |
download | prosody-c73807ad0892ac4d205740786ae2fbfcd351e03f.tar.gz prosody-c73807ad0892ac4d205740786ae2fbfcd351e03f.zip |
List RFC numbers.
Diffstat (limited to 'util/sasl.lua')
-rw-r--r-- | util/sasl.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/sasl.lua b/util/sasl.lua index e7d90704..8cb85033 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -116,7 +116,7 @@ function method:process(message) end --========================= ---SASL PLAIN +--SASL PLAIN according to RFC 4616 local function sasl_mechanism_plain(self, message) local response = message local authorization = s_match(response, "([^%z]+)") @@ -149,4 +149,6 @@ local function sasl_mechanism_plain(self, message) end registerMechanism("PLAIN", {"plain", "plain_test"}, sasl_mechanism_plain); +--========================= +--SASL DIGEST-MD5 return _M; |