view util/uuid.lua @ 278:770a78cd38d7

Forward response stanzas to sasl.lua and some other stuff.
author Tobias Markmann <tm@ayena.de>
date Mon, 10 Nov 2008 16:28:15 +0100
parents fbb3a4ff9cf1
children cccd610a0ef9
line wrap: on
line source


local m_random = math.random;
module "uuid"

function generate()
	return m_random(0, 99999999);
end

return _M;