File

util/sasl/plain.lua @ 415:37674f8ce263

verse.plugins.pep: Support taking an item id, default to "current" XEP-0060 recommends using "current" in section 'Singleton Nodes' and many PEP use cases follow this pattern.
author Kim Alvefur <zash@zash.se>
date Sun, 20 May 2018 00:56:24 +0200
parent 358:a8f6fd6a70ed
line wrap: on
line source


return function (stream, name)
	if name == "PLAIN" and stream.username and stream.password then
		return function (stream)
			return "success" == coroutine.yield("\0"..stream.username.."\0"..stream.password);
		end, 5;
	end
end