mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_bosh: Set base_type on session
This fixes a traceback with mod_saslauth. Ideally we move this to util.session at some point, though.
This commit is contained in:
parent
1b62552e1d
commit
2bc341d8b1
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ function stream_callbacks.streamopened(context, attr)
|
|||
sid = new_uuid();
|
||||
-- TODO use util.session
|
||||
local session = {
|
||||
type = "c2s_unauthed", conn = request.conn, sid = sid, host = attr.to,
|
||||
base_type = "c2s", type = "c2s_unauthed", conn = request.conn, sid = sid, host = attr.to,
|
||||
rid = rid - 1, -- Hack for initial session setup, "previous" rid was $current_request - 1
|
||||
bosh_version = attr.ver, bosh_wait = wait, streamid = sid,
|
||||
bosh_max_inactive = bosh_max_inactivity, bosh_responses = cache.new(BOSH_HOLD+1):table();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue