diff options
author | Justin Clarke Casey | 2008-11-05 22:17:47 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-05 22:17:47 +0000 |
commit | f7f448bc787ec370dc004c5247f42efcf3aebe0e (patch) | |
tree | 331b48fca7e84d6338e7c422b44b0693d1d2aa2d /OpenSim/Region/ClientStack/LindenUDP | |
parent | * Properly use the default value if the LindenUDP.ClientStack section exists ... (diff) | |
download | opensim-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/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs | 4 |
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 | ||