mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
71582ed712
1 changed files with 3 additions and 1 deletions
|
@ -281,7 +281,7 @@ function stream_callbacks.streamopened(context, attr)
|
|||
-- New session
|
||||
sid = new_uuid();
|
||||
local session = {
|
||||
type = "c2s_unauthed", conn = {}, sid = sid, rid = rid, host = attr.to,
|
||||
type = "c2s_unauthed", conn = request.conn, sid = sid, rid = rid, host = attr.to,
|
||||
bosh_version = attr.ver, bosh_wait = wait, streamid = sid,
|
||||
bosh_max_inactive = bosh_max_inactivity,
|
||||
requests = { }, send_buffer = {}, reset_stream = bosh_reset_stream,
|
||||
|
@ -353,6 +353,8 @@ function stream_callbacks.streamopened(context, attr)
|
|||
return;
|
||||
end
|
||||
|
||||
session.conn = request.conn;
|
||||
|
||||
if session.rid then
|
||||
local rid = tonumber(attr.rid);
|
||||
local diff = rid - session.rid;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue