aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-14 16:21:48 -0700
committerJohn Hurliman2009-10-14 16:21:48 -0700
commit82012ec4e3c441021795c66112a66e002d459e73 (patch)
treee14187ec631f08cb56e0c5da3a28aa8cb727b378 /OpenSim/Framework
parent* Switched to a plain lock for the ClientManager collections and protected th... (diff)
downloadopensim-SC_OLD-82012ec4e3c441021795c66112a66e002d459e73.zip
opensim-SC_OLD-82012ec4e3c441021795c66112a66e002d459e73.tar.gz
opensim-SC_OLD-82012ec4e3c441021795c66112a66e002d459e73.tar.bz2
opensim-SC_OLD-82012ec4e3c441021795c66112a66e002d459e73.tar.xz
* Clean up the SetThrottle() code and add a maxBurstRate parameter to allow more tweaking in the future
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/ThrottleOutPacketType.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/OpenSim/Framework/ThrottleOutPacketType.cs b/OpenSim/Framework/ThrottleOutPacketType.cs
index eb42fea..e21ff32 100644
--- a/OpenSim/Framework/ThrottleOutPacketType.cs
+++ b/OpenSim/Framework/ThrottleOutPacketType.cs
@@ -41,13 +41,14 @@ namespace OpenSim.Framework
41 Wind = 2, 41 Wind = 2,
42 /// <summary>Cloud data</summary> 42 /// <summary>Cloud data</summary>
43 Cloud = 3, 43 Cloud = 3,
44 /// <summary>Any packets that do not fit into the other throttles</summary>
45 Task = 4,
44 /// <summary>Texture assets</summary> 46 /// <summary>Texture assets</summary>
45 Texture = 4, 47 Texture = 5,
46 /// <summary>Non-texture assets</summary> 48 /// <summary>Non-texture assets</summary>
47 Asset = 5, 49 Asset = 6,
48 /// <summary>Avatar and primitive data</summary> 50 /// <summary>Avatar and primitive data</summary>
49 State = 6, 51 /// <remarks>This is a sub-category of Task</remarks>
50 /// <summary>Any packets that do not fit into the other throttles</summary> 52 State = 7,
51 Task = 7,
52 } 53 }
53} 54}