From c310fb11f492419de60b4bf8e5bb234e4589b336 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Fri, 10 Jul 2009 02:22:26 +0000 Subject: Remove all references to HttpServer from CommsManager (all incarnations) Change all uses of the HttpServer properties to use the new singleton --- OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs') diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index a526bb2..9ba84a7 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs @@ -59,7 +59,6 @@ namespace OpenSim.Region.Communications.OGS1 public BaseHttpServer httpListener; public NetworkServersInfo serversInfo; - public BaseHttpServer httpServer; public string gdebugRegionName { @@ -85,19 +84,12 @@ namespace OpenSim.Region.Communications.OGS1 /// /// /// - public OGS1GridServices(NetworkServersInfo servers_info, BaseHttpServer httpServe) + public OGS1GridServices(NetworkServersInfo servers_info) { serversInfo = servers_info; - httpServer = httpServe; //Respond to Grid Services requests - // httpServer.AddXmlRPCHandler("expect_user", ExpectUser); - // httpServer.AddXmlRPCHandler("logoff_user", LogOffUser); - httpServer.AddXmlRPCHandler("check", PingCheckReply); - - // Retired into the new service connectors, 6/14/09 - //httpServer.AddXmlRPCHandler("land_data", LandData); - + MainServer.Instance.AddXmlRPCHandler("check", PingCheckReply); } // see IGridServices -- cgit v1.1