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:
Matthew Wild 2024-03-17 10:10:24 +00:00
parent 1b62552e1d
commit 2bc341d8b1

View file

@ -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();