Set the initial rate for the adaptive throttle to 160Kpbs
or about 15 packets per second.bulletsim
parent
3534f4492a
commit
08e58e7ca6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue