aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
diff options
context:
space:
mode:
authorlbsa712007-09-24 05:30:03 +0000
committerlbsa712007-09-24 05:30:03 +0000
commit9ccab46ae8e65412d898603426de6584629ad05f (patch)
tree13815d5e41de6461bc927a5cc524b120d66fa82a /OpenSim/Region/Communications/OGS1/CommunicationsOGS1.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 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs12
1 files changed, 4 insertions, 8 deletions
diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
index dd85d54..ca9c34b 100644
--- a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
+++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs
@@ -8,18 +8,14 @@ namespace OpenSim.Region.Communications.OGS1
8{ 8{
9 public class CommunicationsOGS1 : CommunicationsManager 9 public class CommunicationsOGS1 : CommunicationsManager
10 { 10 {
11 public OGS1InventoryService InvenService;
12
13 public CommunicationsOGS1(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache ) :base(serversInfo, httpServer, assetCache) 11 public CommunicationsOGS1(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache ) :base(serversInfo, httpServer, assetCache)
14 { 12 {
15 OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo, httpServer); 13 OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo, httpServer);
16 GridServer = gridInterComms; 14 m_gridServer = gridInterComms;
17 InterRegion = gridInterComms; 15 m_interRegion = gridInterComms;
18
19 InvenService = new OGS1InventoryService();
20 InventoryServer = InvenService;
21 16
22 UserServer = new OGS1UserServices(this); 17 m_inventoryServer = new OGS1InventoryService();
18 m_userServer = new OGS1UserServices(this);
23 } 19 }
24 } 20 }
25} 21}