aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs b/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs
index 0f71222..0ac573a 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/TokenBucket.cs
@@ -96,8 +96,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
96 /// also sets the total request for leaf nodes 96 /// also sets the total request for leaf nodes
97 /// </summary> 97 /// </summary>
98 protected float m_burst; 98 protected float m_burst;
99//not in use 99
100 public float MaxDripRate { get; set; } 100 public virtual float MaxDripRate { get; set; }
101 101
102 public float RequestedBurst 102 public float RequestedBurst
103 { 103 {
@@ -347,7 +347,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
347 // </summary> 347 // </summary>
348 348
349 protected float m_maxDripRate = 0; 349 protected float m_maxDripRate = 0;
350 public float MaxDripRate 350 public override float MaxDripRate
351 { 351 {
352 get { return (m_maxDripRate == 0 ? m_totalDripRequest : m_maxDripRate); } 352 get { return (m_maxDripRate == 0 ? m_totalDripRequest : m_maxDripRate); }
353 set 353 set