aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-05 22:17:47 +0000
committerJustin Clarke Casey2008-11-05 22:17:47 +0000
commitf7f448bc787ec370dc004c5247f42efcf3aebe0e (patch)
tree331b48fca7e84d6338e7c422b44b0693d1d2aa2d /OpenSim/Region/ClientStack
parent* Properly use the default value if the LindenUDP.ClientStack section exists ... (diff)
downloadopensim-SC_OLD-f7f448bc787ec370dc004c5247f42efcf3aebe0e.zip
opensim-SC_OLD-f7f448bc787ec370dc004c5247f42efcf3aebe0e.tar.gz
opensim-SC_OLD-f7f448bc787ec370dc004c5247f42efcf3aebe0e.tar.bz2
opensim-SC_OLD-f7f448bc787ec370dc004c5247f42efcf3aebe0e.tar.xz
* Fix capitalization typoes in packet throttle that happened to be the name of existing fields
* This should (hopefully) allow TestClient and stuff built on top of it to work again * Will probably come back later and change variable names to stop this happening again
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs
index 305a984..5037ea5 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs
@@ -56,8 +56,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
56 { 56 {
57 m_throttleMultiplier = throttleMultiplier; 57 m_throttleMultiplier = throttleMultiplier;
58 m_maxAllowableThrottle = (int)(max * throttleMultiplier); 58 m_maxAllowableThrottle = (int)(max * throttleMultiplier);
59 m_minAllowableThrottle = (int)(Min * throttleMultiplier); 59 m_minAllowableThrottle = (int)(min * throttleMultiplier);
60 m_currentThrottle = (int)(Throttle * throttleMultiplier); 60 m_currentThrottle = (int)(throttle * throttleMultiplier);
61 m_currentBitsSent = 0; 61 m_currentBitsSent = 0;
62 } 62 }
63 63