Software /
code /
prosody
Diff
plugins/mod_bosh.lua @ 4000:ca91d6e1d802
mod_bosh: Fix for miscalculating inactivity, causing disconnects under a steady stream of traffic
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 04 Jan 2011 21:38:14 +0000 |
parent | 3725:926ece7d0e67 |
child | 4102:9df4e61c260b |
line wrap: on
line diff
--- a/plugins/mod_bosh.lua Tue Jan 04 21:19:28 2011 +0000 +++ b/plugins/mod_bosh.lua Tue Jan 04 21:38:14 2011 +0000 @@ -125,6 +125,12 @@ local session = sessions[request.sid]; if session then + -- Session was marked as inactive, since we have + -- a request open now, unmark it + if inactive_sessions[session] then + inactive_sessions[session] = nil; + end + local r = session.requests; log("debug", "Session %s has %d out of %d requests open", request.sid, #r, session.bosh_hold); log("debug", "and there are %d things in the send_buffer", #session.send_buffer); @@ -154,11 +160,6 @@ request.reply_before = os_time() + session.bosh_wait; waiting_requests[request] = true; end - if inactive_sessions[session] then - -- Session was marked as inactive, since we have - -- a request open now, unmark it - inactive_sessions[session] = nil; - end end return true; -- Inform httpserver we shall reply later