File

util/sasl/anonymous.lua @ 372:0ce6d4a1e2fd

Makefile: Add 'install' target
author Matthew Wild <mwild1@gmail.com>
date Fri, 01 Jan 2016 15:41:04 +0000
parent 358:a8f6fd6a70ed
line wrap: on
line source


return function (stream, name)
	if name == "ANONYMOUS" then
		return function ()
			return coroutine.yield() == "success";
		end, 0;
	end
end