File

util/sasl/anonymous.lua @ 384:532a379acfea

plugins.tls: Allow configuring TLS options at stream.ssl
author Kim Alvefur <zash@zash.se>
date Sun, 17 May 2015 14:59:28 +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