aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
authorlbsa712007-09-24 05:30:03 +0000
committerlbsa712007-09-24 05:30:03 +0000
commit9ccab46ae8e65412d898603426de6584629ad05f (patch)
tree13815d5e41de6461bc927a5cc524b120d66fa82a /OpenSim/Framework/Communications/CommunicationsManager.cs
parent* reorder and rename (diff)
downloadopensim-SC_OLD-9ccab46ae8e65412d898603426de6584629ad05f.zip
opensim-SC_OLD-9ccab46ae8e65412d898603426de6584629ad05f.tar.gz
opensim-SC_OLD-9ccab46ae8e65412d898603426de6584629ad05f.tar.bz2
opensim-SC_OLD-9ccab46ae8e65412d898603426de6584629ad05f.tar.xz
* Trying to streamline CommunicationsManager
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs19
1 files changed, 9 insertions, 10 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index e5abb2e..2a87306 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -37,18 +37,18 @@ namespace OpenSim.Framework.Communications
37{ 37{
38 public class CommunicationsManager 38 public class CommunicationsManager
39 { 39 {
40 private AssetCache m_assetCache; 40 protected AssetCache m_assetCache;
41 private IGridServices m_gridServer; 41 protected IGridServices m_gridServer;
42 private IInterRegionCommunications m_interRegion; 42 protected IInterRegionCommunications m_interRegion;
43 private IInventoryServices m_inventoryServer; 43 protected IInventoryServices m_inventoryServer;
44 private AssetTransactionManager m_transactionsManager; 44 protected AssetTransactionManager m_transactionsManager;
45 private UserProfileCache m_userProfiles; 45 protected UserProfileCache m_userProfiles;
46 private IUserServices m_userServer; 46 protected IUserServices m_userServer;
47 private NetworkServersInfo m_networkServersInfo; 47 protected NetworkServersInfo m_networkServersInfo;
48 48
49 public CommunicationsManager(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache) 49 public CommunicationsManager(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache)
50 { 50 {
51 this.m_networkServersInfo = serversInfo; 51 m_networkServersInfo = serversInfo;
52 m_assetCache = assetCache; 52 m_assetCache = assetCache;
53 m_userProfiles = new UserProfileCache(this); 53 m_userProfiles = new UserProfileCache(this);
54 m_transactionsManager = new AssetTransactionManager(this); 54 m_transactionsManager = new AssetTransactionManager(this);
@@ -63,7 +63,6 @@ namespace OpenSim.Framework.Communications
63 public IGridServices GridServer 63 public IGridServices GridServer
64 { 64 {
65 get { return m_gridServer; } 65 get { return m_gridServer; }
66 set { m_gridServer = value; }
67 } 66 }
68 67
69 public IInventoryServices InventoryServer 68 public IInventoryServices InventoryServer