Software /
code /
prosody
Changeset
2181:d5cd6a868959 sasl
List RFC numbers.
author | Tobias Markmann <tm@ayena.de> |
---|---|
date | Fri, 28 Aug 2009 19:43:33 +0200 |
parents | 2180:8de2f7f5b870 |
children | 2182:27c7d287345e |
files | util/sasl.lua |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/util/sasl.lua Fri Aug 28 19:20:12 2009 +0200 +++ b/util/sasl.lua Fri Aug 28 19:43:33 2009 +0200 @@ -116,7 +116,7 @@ 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 @@ end registerMechanism("PLAIN", {"plain", "plain_test"}, sasl_mechanism_plain); +--========================= +--SASL DIGEST-MD5 return _M;