File

util/sasl/anonymous.lua @ 400:0db9cb909cf1

client, component: Fix logging of invalid XML
author Matthew Wild <mwild1@gmail.com>
date Tue, 09 Feb 2016 23:39:31 +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