File

util/sasl/anonymous.lua @ 416:92ce569b9b73

buildsys: Update to fetch from Prosody 0.10 branch
author Kim Alvefur <zash@zash.se>
date Sun, 20 May 2018 01:15:50 +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