aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ThrottleOutPacketType.cs
diff options
context:
space:
mode:
authorlbsa712008-07-08 11:25:18 +0000
committerlbsa712008-07-08 11:25:18 +0000
commitd9b802bb26ee659a68270ac05ea0406389afc883 (patch)
tree54a53c343d14e15a6236a0c36daa228f07ae57b6 /OpenSim/Framework/ThrottleOutPacketType.cs
parentRegionInfo.configMember can be null for dynamically created regions (diff)
downloadopensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.zip
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.gz
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.bz2
opensim-SC_OLD-d9b802bb26ee659a68270ac05ea0406389afc883.tar.xz
* Split out various classes from IClientAPI into their own files, in accordance with code standards
Diffstat (limited to 'OpenSim/Framework/ThrottleOutPacketType.cs')
-rw-r--r--OpenSim/Framework/ThrottleOutPacketType.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/ThrottleOutPacketType.cs b/OpenSim/Framework/ThrottleOutPacketType.cs
new file mode 100644
index 0000000..465c0d0
--- /dev/null
+++ b/OpenSim/Framework/ThrottleOutPacketType.cs
@@ -0,0 +1,15 @@
1namespace 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} \ No newline at end of file