aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index a11995a..99e9c96 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -64,6 +64,7 @@ namespace OpenSim.Region.Communications.OGS1
64 64
65 if (!this.listeners.ContainsKey(regionInfo.RegionHandle)) 65 if (!this.listeners.ContainsKey(regionInfo.RegionHandle))
66 { 66 {
67 MainLog.Instance.Verbose("OGS1 - Registering new HTTP listener on port " + regionInfo.InternalEndPoint.Port.ToString());
67 // initialised = true; 68 // initialised = true;
68 httpListener = new BaseHttpServer( regionInfo.InternalEndPoint.Port ); 69 httpListener = new BaseHttpServer( regionInfo.InternalEndPoint.Port );
69 httpListener.AddXmlRPCHandler("expect_user", this.ExpectUser); 70 httpListener.AddXmlRPCHandler("expect_user", this.ExpectUser);
@@ -193,6 +194,8 @@ namespace OpenSim.Region.Communications.OGS1
193 MainLog.Instance.Error("ExpectUser() - Unknown region " + ((ulong)requestData["regionhandle"]).ToString()); 194 MainLog.Instance.Error("ExpectUser() - Unknown region " + ((ulong)requestData["regionhandle"]).ToString());
194 } 195 }
195 196
197 MainLog.Instance.Verbose("ExpectUser() - Welcoming new user...");
198
196 return new XmlRpcResponse(); 199 return new XmlRpcResponse();
197 } 200 }
198 201