aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ThrottleOutPacketType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/ThrottleOutPacketType.cs')
-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}