* Update in OGP draft 3 protocol spec with regards to seed region requests running over GET instead of POST and the rez_avatar/request cap being wrapped in the capabilities map.

This commit is contained in:
Teravus Ovares
2008-09-23 01:54:04 +00:00
parent 48672c7fd6
commit 611ffa3f60
2 changed files with 10 additions and 3 deletions

View File

@@ -607,9 +607,14 @@ namespace OpenSim.Framework.Servers
LLSD llsdRequest = null;
LLSD llsdResponse = null;
bool LegacyLLSDLoginLibOMV = (requestBody.Contains("passwd") && requestBody.Contains("mac") && requestBody.Contains("viewer_digest"));
if (requestBody.Length == 0)
// Get Request
{
requestBody = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><llsd><map><key>request</key><string>get</string></map></llsd>";
}
try
{
llsdRequest = LLSDParser.DeserializeXml(requestBody);