aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMW2007-05-15 21:33:03 +0000
committerMW2007-05-15 21:33:03 +0000
commit57d1a7bced4889addd6a35b323e0715aaff4cd12 (patch)
treefdd7cc4adb61ce05b56d971225e8bce2977d0f87
parentAdded RemoveAvatar() method to physics plugins, should be called on log out (... (diff)
downloadopensim-SC_OLD-57d1a7bced4889addd6a35b323e0715aaff4cd12.zip
opensim-SC_OLD-57d1a7bced4889addd6a35b323e0715aaff4cd12.tar.gz
opensim-SC_OLD-57d1a7bced4889addd6a35b323e0715aaff4cd12.tar.bz2
opensim-SC_OLD-57d1a7bced4889addd6a35b323e0715aaff4cd12.tar.xz
made QueItem a nested class in SimClient.
-rw-r--r--OpenSim.RegionServer/QueItem.cs3
-rw-r--r--OpenSim.RegionServer/SimClient.cs10
2 files changed, 12 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/QueItem.cs b/OpenSim.RegionServer/QueItem.cs
index 747e026..d9b77ba 100644
--- a/OpenSim.RegionServer/QueItem.cs
+++ b/OpenSim.RegionServer/QueItem.cs
@@ -5,6 +5,7 @@ using libsecondlife.Packets;
5 5
6namespace OpenSim 6namespace OpenSim
7{ 7{
8 /*
8 public class QueItem 9 public class QueItem
9 { 10 {
10 public QueItem() 11 public QueItem()
@@ -13,6 +14,6 @@ namespace OpenSim
13 14
14 public Packet Packet; 15 public Packet Packet;
15 public bool Incoming; 16 public bool Incoming;
16 } 17 }*/
17 18
18} 19}
diff --git a/OpenSim.RegionServer/SimClient.cs b/OpenSim.RegionServer/SimClient.cs
index 92156f0..f5cfaad 100644
--- a/OpenSim.RegionServer/SimClient.cs
+++ b/OpenSim.RegionServer/SimClient.cs
@@ -1015,5 +1015,15 @@ namespace OpenSim
1015 m_assetCache.AddAsset(asset); 1015 m_assetCache.AddAsset(asset);
1016 m_inventoryCache.AddNewInventoryItem(this, packet.InventoryBlock.FolderID, asset); 1016 m_inventoryCache.AddNewInventoryItem(this, packet.InventoryBlock.FolderID, asset);
1017 } 1017 }
1018
1019 public class QueItem
1020 {
1021 public QueItem()
1022 {
1023 }
1024
1025 public Packet Packet;
1026 public bool Incoming;
1027 }
1018 } 1028 }
1019} 1029}