diff -r 8de2f7f5b870 -r d5cd6a868959 util/sasl.lua --- 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;