Set the initial rate for the adaptive throttle to 160Kpbs

or about 15 packets per second.
bulletsim
Mic Bowman 2011-04-22 14:02:34 -07:00
parent 3534f4492a
commit 08e58e7ca6
1 changed files with 6 additions and 4 deletions

View File

@ -322,10 +322,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{ {
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
// <summary> /// <summary>
// The minimum rate for flow control. /// The minimum rate for flow control. Minimum drip rate is one
// </summary> /// packet per second. Open the throttle to 15 packets per second
protected const Int64 m_minimumFlow = m_minimumDripRate * 10; /// or about 160kbps.
/// </summary>
protected const Int64 m_minimumFlow = m_minimumDripRate * 15;
// <summary> // <summary>
// The maximum rate for flow control. Drip rate can never be // The maximum rate for flow control. Drip rate can never be