From 1302ef44e3c632159378bc4042c753bcf36e9c63 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 24 Sep 2007 07:30:30 +0000 Subject: * Started major restructusing of comms to prepare for better grid and region functionality * Working towards one shared set of services * Killed off two projects with very little functionality --- OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs') diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs index ca9c34b..96f1933 100644 --- a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs +++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs @@ -11,11 +11,11 @@ namespace OpenSim.Region.Communications.OGS1 public CommunicationsOGS1(NetworkServersInfo serversInfo, BaseHttpServer httpServer, AssetCache assetCache ) :base(serversInfo, httpServer, assetCache) { OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo, httpServer); - m_gridServer = gridInterComms; + m_gridService = gridInterComms; m_interRegion = gridInterComms; - m_inventoryServer = new OGS1InventoryService(); - m_userServer = new OGS1UserServices(this); + m_inventoryService = new OGS1InventoryService(); + m_userService = new OGS1UserServices(this); } } } -- cgit v1.1