Changeset

8093:8d1fd6d34bda

mod_bosh: Update session.conn to point to the current connection (fixes #890)
author Kim Alvefur <zash@zash.se>
date Mon, 17 Apr 2017 21:40:06 +0200
parents 8002:57060d0cee4b
children 8097:e24263db3380 8151:2c65f8be38aa
files plugins/mod_bosh.lua
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_bosh.lua	Fri Mar 24 00:25:49 2017 +0100
+++ b/plugins/mod_bosh.lua	Mon Apr 17 21:40:06 2017 +0200
@@ -247,7 +247,7 @@
 		-- New session
 		sid = new_uuid();
 		local session = {
-			type = "c2s_unauthed", conn = {}, sid = sid, rid = tonumber(attr.rid)-1, host = attr.to,
+			type = "c2s_unauthed", conn = request.conn, sid = sid, rid = tonumber(attr.rid)-1, host = attr.to,
 			bosh_version = attr.ver, bosh_wait = math_min(attr.wait, bosh_max_wait), streamid = sid,
 			bosh_hold = BOSH_DEFAULT_HOLD, bosh_max_inactive = BOSH_DEFAULT_INACTIVITY,
 			requests = { }, send_buffer = {}, reset_stream = bosh_reset_stream,
@@ -316,6 +316,8 @@
 		context.notopen = nil;
 		return;
 	end
+
+	session.conn = request.conn;
 	
 	if session.rid then
 		local rid = tonumber(attr.rid);