- Use the http-port that is now provided by the grid-server. If it isn't (because GridServer is too old), complain.

Not used yet, but will be necessary for crossing regions correcly.
0.6.1-post-fixes
Homer Horwitz 2008-12-05 17:31:31 +00:00
parent 33d7913341
commit 05467cb780
1 changed files with 5 additions and 0 deletions

View File

@ -301,6 +301,11 @@ namespace OpenSim.Region.Communications.OGS1
{
sri.HttpPort = Convert.ToUInt32(neighbourData["http_port"]);
}
else
{
m_log.Error("[OGS1 GRID SERVICES]: Couldn't find httpPort, using default 9000; please upgrade your grid-server to r7621 or later");
sri.HttpPort = 9000; // that's the default and will probably be wrong
}
sri.RegionID = new UUID((string) neighbourData["uuid"]);