Beginning work on the new LLUDP implementation

This commit is contained in:
John Hurliman
2009-10-05 17:38:14 -07:00
parent a528e7704c
commit 429a84f390
14 changed files with 1889 additions and 2408 deletions

View File

@@ -29,9 +29,9 @@ using System;
namespace OpenSim.Framework
{
[Flags]
public enum ThrottleOutPacketType : int
{
Unknown = -1, // Also doubles as 'do not throttle'
Resend = 0,
Land = 1,
Wind = 2,
@@ -39,11 +39,5 @@ namespace OpenSim.Framework
Task = 4,
Texture = 5,
Asset = 6,
Unknown = 7, // Also doubles as 'do not throttle'
Back = 8,
TypeMask = 15, // The mask to mask off the flags
LowPriority = 128 // Additional flags
}
}