aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-10-07 01:44:36 +0100
committerJustin Clark-Casey (justincc)2014-11-25 23:18:40 +0000
commit5c13980eb726762daa597c5bc3739f65fbabf275 (patch)
treefff4e32e397f6df1b2b9280674561ff234b8bdd9 /OpenSim/Region/ClientStack/Linden/UDP
parentsmall adjustment to commented out scene_throttle_max_bps and client_throttle_... (diff)
downloadopensim-SC_OLD-5c13980eb726762daa597c5bc3739f65fbabf275.zip
opensim-SC_OLD-5c13980eb726762daa597c5bc3739f65fbabf275.tar.gz
opensim-SC_OLD-5c13980eb726762daa597c5bc3739f65fbabf275.tar.bz2
opensim-SC_OLD-5c13980eb726762daa597c5bc3739f65fbabf275.tar.xz
Change "debug lludp throttle *" commands to "debug lludp throttles" for consistency (and because I keep typing throttles).
This will still work with "debug lludp throttle" anyway.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
index 20ae188..59c2042 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServerCommands.cs
@@ -129,8 +129,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
129 m_console.Commands.AddCommand( 129 m_console.Commands.AddCommand(
130 "Debug", 130 "Debug",
131 false, 131 false,
132 "debug lludp throttle log", 132 "debug lludp throttles log",
133 "debug lludp throttle log <level> [<avatar-first-name> <avatar-last-name>]", 133 "debug lludp throttles log <level> [<avatar-first-name> <avatar-last-name>]",
134 "Change debug logging level for throttles.", 134 "Change debug logging level for throttles.",
135 "If level >= 0 then throttle debug logging is performed.\n" 135 "If level >= 0 then throttle debug logging is performed.\n"
136 + "If level <= 0 then no throttle debug logging is performed.", 136 + "If level <= 0 then no throttle debug logging is performed.",
@@ -139,16 +139,16 @@ namespace OpenSim.Region.ClientStack.LindenUDP
139 m_console.Commands.AddCommand( 139 m_console.Commands.AddCommand(
140 "Debug", 140 "Debug",
141 false, 141 false,
142 "debug lludp throttle get", 142 "debug lludp throttles get",
143 "debug lludp throttle get [<avatar-first-name> <avatar-last-name>]", 143 "debug lludp throttles get [<avatar-first-name> <avatar-last-name>]",
144 "Return debug settings for throttles.", 144 "Return debug settings for throttles.",
145 HandleThrottleGetCommand); 145 HandleThrottleGetCommand);
146 146
147 m_console.Commands.AddCommand( 147 m_console.Commands.AddCommand(
148 "Debug", 148 "Debug",
149 false, 149 false,
150 "debug lludp throttle set", 150 "debug lludp throttles set",
151 "debug lludp throttle set <param> <value> [<avatar-first-name> <avatar-last-name>]", 151 "debug lludp throttles set <param> <value> [<avatar-first-name> <avatar-last-name>]",
152 "Set a throttle parameter for the given client.", 152 "Set a throttle parameter for the given client.",
153 "Only current setting is 'adaptive' which must be 'true' or 'false'", 153 "Only current setting is 'adaptive' which must be 'true' or 'false'",
154 HandleThrottleSetCommand); 154 HandleThrottleSetCommand);
@@ -279,7 +279,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
279 if (!all && !one) 279 if (!all && !one)
280 { 280 {
281 MainConsole.Instance.OutputFormat( 281 MainConsole.Instance.OutputFormat(
282 "Usage: debug lludp throttle log <level> [<avatar-first-name> <avatar-last-name>]"); 282 "Usage: debug lludp throttles log <level> [<avatar-first-name> <avatar-last-name>]");
283 return; 283 return;
284 } 284 }
285 285
@@ -320,7 +320,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
320 if (!all && !one) 320 if (!all && !one)
321 { 321 {
322 MainConsole.Instance.OutputFormat( 322 MainConsole.Instance.OutputFormat(
323 "Usage: debug lludp throttle set <param> <value> [<avatar-first-name> <avatar-last-name>]"); 323 "Usage: debug lludp throttles set <param> <value> [<avatar-first-name> <avatar-last-name>]");
324 return; 324 return;
325 } 325 }
326 326
@@ -370,7 +370,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
370 if (!all && !one) 370 if (!all && !one)
371 { 371 {
372 MainConsole.Instance.OutputFormat( 372 MainConsole.Instance.OutputFormat(
373 "Usage: debug lludp throttle get [<avatar-first-name> <avatar-last-name>]"); 373 "Usage: debug lludp throttles get [<avatar-first-name> <avatar-last-name>]");
374 return; 374 return;
375 } 375 }
376 376