aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ThrottleOutPacketType.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-08-18 18:59:06 +0000
committerMelanie Thielker2008-08-18 18:59:06 +0000
commit6614eee4d436644b2709d216a516b3ee6142635f (patch)
tree908c8a7392b56bee3a86c562042e2d783f16105b /OpenSim/Framework/ThrottleOutPacketType.cs
parentAvatar Attachment persistence!! Patch #9168 (Mantis #1171) (diff)
downloadopensim-SC_OLD-6614eee4d436644b2709d216a516b3ee6142635f.zip
opensim-SC_OLD-6614eee4d436644b2709d216a516b3ee6142635f.tar.gz
opensim-SC_OLD-6614eee4d436644b2709d216a516b3ee6142635f.tar.bz2
opensim-SC_OLD-6614eee4d436644b2709d216a516b3ee6142635f.tar.xz
Change LowpriorityTask to be ThrottleType.Task | ThrottleType.LowPriority to make the flag nature of this value more clear.
Diffstat (limited to 'OpenSim/Framework/ThrottleOutPacketType.cs')
-rw-r--r--OpenSim/Framework/ThrottleOutPacketType.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/ThrottleOutPacketType.cs b/OpenSim/Framework/ThrottleOutPacketType.cs
index 27b25d2..b236362 100644
--- a/OpenSim/Framework/ThrottleOutPacketType.cs
+++ b/OpenSim/Framework/ThrottleOutPacketType.cs
@@ -11,6 +11,9 @@ namespace OpenSim.Framework
11 Asset = 6, 11 Asset = 6,
12 Unknown = 7, // Also doubles as 'do not throttle' 12 Unknown = 7, // Also doubles as 'do not throttle'
13 Back = 8, 13 Back = 8,
14 LowpriorityTask = 9 14
15 TypeMask = 15, // The mask to mask off the flags
16
17 LowPriority = 128 // Additional flags
15 } 18 }
16} 19}