List RFC numbers. sasl
authorTobias Markmann <tm@ayena.de>
Fri, 28 Aug 2009 19:43:33 +0200
branchsasl
changeset 2181 d5cd6a868959
parent 2180 8de2f7f5b870
child 2182 27c7d287345e
List RFC numbers.
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;