File

util/sasl/anonymous.lua @ 475:68a4fb45afbc

disco: Fire disco-info-changed when necessary, move presence resending there
author Matthew Wild <mwild1@gmail.com>
date Fri, 17 Mar 2023 11:15:18 +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