diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/TokenBucket.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/TokenBucket.cs b/OpenSim/Region/ClientStack/LindenUDP/TokenBucket.cs index 8ce64d5..677d3d1 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/TokenBucket.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/TokenBucket.cs | |||
@@ -322,10 +322,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
322 | { | 322 | { |
323 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 323 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
324 | 324 | ||
325 | // <summary> | 325 | /// <summary> |
326 | // The minimum rate for flow control. | 326 | /// The minimum rate for flow control. Minimum drip rate is one |
327 | // </summary> | 327 | /// packet per second. Open the throttle to 15 packets per second |
328 | protected const Int64 m_minimumFlow = m_minimumDripRate * 10; | 328 | /// or about 160kbps. |
329 | /// </summary> | ||
330 | protected const Int64 m_minimumFlow = m_minimumDripRate * 15; | ||
329 | 331 | ||
330 | // <summary> | 332 | // <summary> |
331 | // The maximum rate for flow control. Drip rate can never be | 333 | // The maximum rate for flow control. Drip rate can never be |