File

util/sasl/anonymous.lua @ 428:bde804b01f28

Fix typos (thanks Link Mauve and codespell)
author Kim Alvefur <zash@zash.se>
date Mon, 24 Dec 2018 17:35:07 +0100
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