ThrottleOutPacketType.cs 295 B

123456789101112131415
  1. namespace OpenSim.Framework
  2. {
  3. public enum ThrottleOutPacketType : int
  4. {
  5. Resend = 0,
  6. Land = 1,
  7. Wind = 2,
  8. Cloud = 3,
  9. Task = 4,
  10. Texture = 5,
  11. Asset = 6,
  12. Unknown = 7, // Also doubles as 'do not throttle'
  13. Back = 8
  14. }
  15. }