File

util/sasl/anonymous.lua @ 367:8e9f44ecb95b

squishy: Fetch from latest 0.9
author Kim Alvefur <zash@zash.se>
date Sun, 05 Oct 2014 14:39:11 +0200
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