mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 11:33:28 +08:00
* Replacing Net.HttpListener with HttpServer.
* This is a HUGE update.. and should be considered fraut with peril. * SSL Mode isn't available *yet* but I'll work on that next. * DrScofld is still working on a radical new thread pump scheme for this which will be implemented soon. * This could break the Build! This could break your Grid!
This commit is contained in:
@@ -368,9 +368,12 @@ namespace OpenSim.Framework.Communications
|
||||
|
||||
if (request.Params.Count > 1)
|
||||
{
|
||||
IPEndPoint RemoteIPEndPoint = (IPEndPoint)request.Params[1];
|
||||
agent.AgentIP = RemoteIPEndPoint.Address.ToString();
|
||||
agent.AgentPort = (uint)RemoteIPEndPoint.Port;
|
||||
if (request.Params[1] != null)
|
||||
{
|
||||
IPEndPoint RemoteIPEndPoint = (IPEndPoint)request.Params[1];
|
||||
agent.AgentIP = RemoteIPEndPoint.Address.ToString();
|
||||
agent.AgentPort = (uint)RemoteIPEndPoint.Port;
|
||||
}
|
||||
}
|
||||
|
||||
// Generate sessions
|
||||
|
||||
Reference in New Issue
Block a user