mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Add "uuid" library and make sessionmanager use this.
...and yes, the uuid generation needs work :P
This commit is contained in:
parent
8d8cdb8574
commit
f6924a64c0
2 changed files with 11 additions and 2 deletions
9
util/uuid.lua
Normal file
9
util/uuid.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
local m_random = math.random;
|
||||
module "uuid"
|
||||
|
||||
function uuid_generate()
|
||||
return m_random(0, 99999999);
|
||||
end
|
||||
|
||||
return _M;
|
Loading…
Add table
Add a link
Reference in a new issue