aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
authorAdam Frisby2007-07-04 07:45:42 +0000
committerAdam Frisby2007-07-04 07:45:42 +0000
commit827cccb99c39b7dd3ee0ccc3defb9d88e449db52 (patch)
tree32e07c7b2db0f213844fea6e361093f92cc301bf /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
parent* More cleaning - Sugilite now only has build errors for "value is never used... (diff)
downloadopensim-SC_OLD-827cccb99c39b7dd3ee0ccc3defb9d88e449db52.zip
opensim-SC_OLD-827cccb99c39b7dd3ee0ccc3defb9d88e449db52.tar.gz
opensim-SC_OLD-827cccb99c39b7dd3ee0ccc3defb9d88e449db52.tar.bz2
opensim-SC_OLD-827cccb99c39b7dd3ee0ccc3defb9d88e449db52.tar.xz
Grid Servers:
* Sugilite grid server now works with older regions properly (using it on deepgrid for testing) * Sugilite user server still broken with sugilite region server * Reduced the number of compiler warnings to zero Region Servers: * Added debug information to OGS1 Comms to help debug user server connectivity issues.
Diffstat (limited to '')
-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