prosody/util/uuid.lua
Matthew Wild f6924a64c0 Add "uuid" library and make sessionmanager use this.
...and yes, the uuid generation needs work :P
2008-10-04 02:12:54 +01:00

9 lines
No EOL
117 B
Lua

local m_random = math.random;
module "uuid"
function uuid_generate()
return m_random(0, 99999999);
end
return _M;