Add "uuid" library and make sessionmanager use this.

...and yes, the uuid generation needs work :P
This commit is contained in:
Matthew Wild 2008-10-04 02:12:54 +01:00
parent 8d8cdb8574
commit f6924a64c0
2 changed files with 11 additions and 2 deletions

9
util/uuid.lua Normal file
View file

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