# HG changeset patch # User Matthew Wild # Date 1254591647 -3600 # Node ID 3b770710a1ee4a2870b39a06bdc8bbf8dd3547fa # Parent 1905eca82ddf7f7bb65ef662f6b143db347875e4 sessionmanager: Use UUID for stream ids to clients, no math.random anymore :) 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("");