diff -r 1905eca82ddf -r 3b770710a1ee core/sessionmanager.lua --- a/core/sessionmanager.lua Sat Oct 03 02:41:28 2009 +0100 +++ b/core/sessionmanager.lua Sat Oct 03 18:40:47 2009 +0100 @@ -11,7 +11,6 @@ local tonumber, tostring = tonumber, tostring; local ipairs, pairs, print, next= ipairs, pairs, print, next; local collectgarbage = collectgarbage; -local m_random = import("math", "random"); local format = import("string", "format"); local hosts = hosts; @@ -168,7 +167,7 @@ session.host = attr.to or error("Client failed to specify destination hostname"); session.host = nameprep(session.host); session.version = tonumber(attr.version) or 0; - session.streamid = m_random(1000000, 99999999); + session.streamid = uuid_generate(); (session.log or session)("debug", "Client sent opening to %s", session.host); send("");