diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs index 0f1acb1..3eed2e0 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | |||
@@ -133,7 +133,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
133 | TextureThrottle = new LLPacketThrottle(1000, throttleMaxBPS / 2, 4000, userSettings.ClientThrottleMultipler); | 133 | TextureThrottle = new LLPacketThrottle(1000, throttleMaxBPS / 2, 4000, userSettings.ClientThrottleMultipler); |
134 | 134 | ||
135 | 135 | ||
136 | // Total Throttle trumps all - it is the number of bits in total that are allowed to go out per second. | 136 | // Total Throttle trumps all - it is the number of bits in total that are allowed to go out per second. |
137 | 137 | ||
138 | 138 | ||
139 | ThrottleSettings totalThrottleSettings = userSettings.TotalThrottleSettings; | 139 | ThrottleSettings totalThrottleSettings = userSettings.TotalThrottleSettings; |
@@ -389,7 +389,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
389 | { | 389 | { |
390 | LLQueItem qpack = ResendOutgoingPacketQueue.Dequeue(); | 390 | LLQueItem qpack = ResendOutgoingPacketQueue.Dequeue(); |
391 | 391 | ||
392 | SendQueue.Enqueue(qpack); | 392 | SendQueue.Enqueue(qpack); |
393 | TotalThrottle.AddBytes(qpack.Length); | 393 | TotalThrottle.AddBytes(qpack.Length); |
394 | ResendThrottle.AddBytes(qpack.Length); | 394 | ResendThrottle.AddBytes(qpack.Length); |
395 | 395 | ||
@@ -461,7 +461,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
461 | { | 461 | { |
462 | LLQueItem qpack = TextureOutgoingPacketQueue.Dequeue(); | 462 | LLQueItem qpack = TextureOutgoingPacketQueue.Dequeue(); |
463 | 463 | ||
464 | SendQueue.Enqueue(qpack); | 464 | SendQueue.Enqueue(qpack); |
465 | TotalThrottle.AddBytes(qpack.Length); | 465 | TotalThrottle.AddBytes(qpack.Length); |
466 | TextureThrottle.AddBytes(qpack.Length); | 466 | TextureThrottle.AddBytes(qpack.Length); |
467 | qchanged = true; | 467 | qchanged = true; |