From 4ff0c391530ad8ce937d281f4ac6492c760080db Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 3 Nov 2008 21:09:30 +0000 Subject: * Expose a client_throttle_multiplier setting in OpenSim.ini. This multiplier is applied to all the client throttle settings received by the client * This should probably be 1, but currently by default it is 8, to reflect what was being eon3 in OpenSim before this revision. So if the client requested a maximum throttle of 1500 kilobits per second, we would actually send out 1500 kilobytes per second * Adjusting this multiplier down towards 1 may improve your OpenSim experience, though in other situations it may degrade (e.g. if you're using a standalone over high bandwidth links) * This is currently a user setting because adjusting it down may currently reveal other OpenSim bugs. --- OpenSim/Region/ClientStack/ClientStackUserSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/ClientStack/ClientStackUserSettings.cs') diff --git a/OpenSim/Region/ClientStack/ClientStackUserSettings.cs b/OpenSim/Region/ClientStack/ClientStackUserSettings.cs index 55ccdca..31293d3 100644 --- a/OpenSim/Region/ClientStack/ClientStackUserSettings.cs +++ b/OpenSim/Region/ClientStack/ClientStackUserSettings.cs @@ -44,6 +44,6 @@ namespace OpenSim.Region.ClientStack /// A multiplier applied to all client throttle settings. This is hopefully a temporary setting to iron out /// bugs that appear if the existing incorrect * 8 throttle (bytes instead of bits) is corrected. /// - public int ClientThrottleMultipler; + public float ClientThrottleMultipler; } } -- cgit v1.1