Merge
[prosody.git] / util / uuid.lua
1 -- Prosody IM v0.4
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10
11 local m_random = math.random;
12 local tostring = tostring;
13 module "uuid"
14
15 function generate()
16         return tostring(m_random(0, 99999999));
17 end
18
19 return _M;