mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* Fixed a mangled Seed caps handler definition on login to region in standalone where port wasn't the http port.
* Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
This commit is contained in:
@@ -594,8 +594,8 @@ namespace OpenSim.Framework.Servers
|
||||
case "application/xml":
|
||||
default:
|
||||
if (DoWeHaveALLSDHandler(request.RawUrl))
|
||||
{
|
||||
m_log.ErrorFormat("[BASE HTTP SERVER]: Potentially incorrect content type on Registered LLSD CAP: Content Type:{0}", request.ContentType);
|
||||
{
|
||||
// Check if we have a LLSD handler here for the EXACT path.
|
||||
HandleLLSDRequests(request, response);
|
||||
|
||||
return;
|
||||
@@ -822,7 +822,7 @@ namespace OpenSim.Framework.Servers
|
||||
if (TryGetLLSDHandler(request.RawUrl, out llsdhandler) && !LegacyLLSDLoginLibOMV)
|
||||
{
|
||||
// we found a registered llsd handler to service this request
|
||||
llsdResponse = llsdhandler(request.RawUrl, llsdRequest, request.RemoteIPEndPoint.ToString());
|
||||
llsdResponse = llsdhandler(request.RawUrl, llsdRequest, (request.RemoteIPEndPoint == null)? "" : request.RemoteIPEndPoint.ToString());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user