diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs index 52247ab..325b04a 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs | |||
@@ -182,7 +182,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
182 | ConsoleDisplayList cdl = new ConsoleDisplayList(); | 182 | ConsoleDisplayList cdl = new ConsoleDisplayList(); |
183 | cdl.AddRow("Adaptive throttles", m_udpServer.ThrottleRates.AdaptiveThrottlesEnabled); | 183 | cdl.AddRow("Adaptive throttles", m_udpServer.ThrottleRates.AdaptiveThrottlesEnabled); |
184 | 184 | ||
185 | long maxSceneDripRate = m_udpServer.MaxTotalDripRate; | 185 | long maxSceneDripRate = m_udpServer.Throttle.MaxDripRate; |
186 | cdl.AddRow( | 186 | cdl.AddRow( |
187 | "Max scene throttle", | 187 | "Max scene throttle", |
188 | maxSceneDripRate != 0 ? string.Format("{0} kbps", maxSceneDripRate * 8 / 1000) : "unset"); | 188 | maxSceneDripRate != 0 ? string.Format("{0} kbps", maxSceneDripRate * 8 / 1000) : "unset"); |
@@ -360,7 +360,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
360 | param, newValue, sp.Name, sp.IsChildAgent ? "child" : "root", m_udpServer.Scene.Name); | 360 | param, newValue, sp.Name, sp.IsChildAgent ? "child" : "root", m_udpServer.Scene.Name); |
361 | 361 | ||
362 | LLUDPClient udpClient = ((LLClientView)sp.ControllingClient).UDPClient; | 362 | LLUDPClient udpClient = ((LLClientView)sp.ControllingClient).UDPClient; |
363 | udpClient.FlowThrottle.Enabled = newValue; | 363 | udpClient.FlowThrottle.AdaptiveEnabled = newValue; |
364 | // udpClient.FlowThrottle.MaxDripRate = 0; | 364 | // udpClient.FlowThrottle.MaxDripRate = 0; |
365 | // udpClient.FlowThrottle.AdjustedDripRate = 0; | 365 | // udpClient.FlowThrottle.AdjustedDripRate = 0; |
366 | } | 366 | } |
@@ -426,7 +426,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
426 | LLUDPClient udpClient = ((LLClientView)sp.ControllingClient).UDPClient; | 426 | LLUDPClient udpClient = ((LLClientView)sp.ControllingClient).UDPClient; |
427 | 427 | ||
428 | ConsoleDisplayList cdl = new ConsoleDisplayList(); | 428 | ConsoleDisplayList cdl = new ConsoleDisplayList(); |
429 | cdl.AddRow("Adaptive throttle", udpClient.FlowThrottle.Enabled); | 429 | cdl.AddRow("Adaptive throttle", udpClient.FlowThrottle.AdaptiveEnabled); |
430 | cdl.AddRow("Max throttle", string.Format("{0} kbps", udpClient.FlowThrottle.RequestedDripRate * 8 / 1000)); | 430 | cdl.AddRow("Max throttle", string.Format("{0} kbps", udpClient.FlowThrottle.RequestedDripRate * 8 / 1000)); |
431 | 431 | ||
432 | m_console.Output(cdl.ToString()); | 432 | m_console.Output(cdl.ToString()); |