File

util/sasl/anonymous.lua @ 385:e6bf19ad5c19

verse: Pass on error from trying to require verse connection module
author Kim Alvefur <zash@zash.se>
date Sun, 17 May 2015 15:00:30 +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