* Make sure ISceneProvider.IPAndPort gets set to a valid IP address
* Send circuit_code in enable_client cap so the existing circuit code is reused for child agent connections

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2487 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-03-16 21:38:23 +00:00
parent 20008e6f6b
commit cb4e07b6c1
5 changed files with 11 additions and 12 deletions

View File

@@ -236,6 +236,10 @@ namespace Simian
}
}
// Make sure 0.0.0.0 gets replaced with a valid IP address
if (endpoint.Address == IPAddress.Any)
endpoint.Address = entry.AddressList.Length > 0 ? entry.AddressList[entry.AddressList.Length - 1] : IPAddress.Loopback;
#endregion IPEndPoint Assignment
#region Grid Registration