try to make sense of throttle rate limits

This commit is contained in:
UbitUmarov
2014-08-28 18:51:55 +01:00
parent 5a2d4fd47f
commit 9839904ebe
2 changed files with 15 additions and 4 deletions

View File

@@ -80,7 +80,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
Texture = throttleConfig.GetInt("texture_default", 18500);
Asset = throttleConfig.GetInt("asset_default", 10500);
Total = throttleConfig.GetInt("client_throttle_max_bps", 0);
// 2500000 bps max
Total = throttleConfig.GetInt("client_throttle_max_bps",312500);
AdaptiveThrottlesEnabled = throttleConfig.GetBoolean("enable_adaptive_throttles", false);