# HG changeset patch # User Matthew Wild # Date 1233454811 0 # Node ID 8e77a39826c2cd7bb903cf2091473dbfe33f4d2b # Parent 5ae018c016ba8dd72feaae20e9c7a69ab308cb5a mod_bosh: No need to tostring() uuids now diff -r 5ae018c016ba -r 8e77a39826c2 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Sun Feb 01 02:17:56 2009 +0000 +++ b/plugins/mod_bosh.lua Sun Feb 01 02:20:11 2009 +0000 @@ -119,7 +119,7 @@ end -- New session - sid = tostring(new_uuid()); + sid = new_uuid(); local session = { type = "c2s_unauthed", conn = {}, sid = sid, rid = attr.rid, host = attr.to, bosh_version = attr.ver, bosh_wait = attr.wait, streamid = sid, bosh_hold = BOSH_DEFAULT_HOLD, bosh_max_inactive = BOSH_DEFAULT_INACTIVITY, requests = { }, send_buffer = {}, reset_stream = bosh_reset_stream, close = bosh_close_stream, dispatch_stanza = core_process_stanza };