* Clean up the SetThrottle() code and add a maxBurstRate parameter to allow more tweaking in the future

This commit is contained in:
John Hurliman
2009-10-14 16:21:48 -07:00
parent 1e9e9df0b3
commit 82012ec4e3
5 changed files with 171 additions and 109 deletions

View File

@@ -41,13 +41,14 @@ namespace OpenSim.Framework
Wind = 2,
/// <summary>Cloud data</summary>
Cloud = 3,
/// <summary>Texture assets</summary>
Texture = 4,
/// <summary>Non-texture assets</summary>
Asset = 5,
/// <summary>Avatar and primitive data</summary>
State = 6,
/// <summary>Any packets that do not fit into the other throttles</summary>
Task = 7,
Task = 4,
/// <summary>Texture assets</summary>
Texture = 5,
/// <summary>Non-texture assets</summary>
Asset = 6,
/// <summary>Avatar and primitive data</summary>
/// <remarks>This is a sub-category of Task</remarks>
State = 7,
}
}