From Michael Osias (IBM)

This patch implements the llHttpRequest function via a region module,
HttpScriptsRequest.  There were bits and peices in LSLLong_cmd_handler,
which I moved into the region module, and just check for completed
requests and dispatch the http_response callback event instead.

works for me as of r2674
This commit is contained in:
Sean Dague
2007-12-12 22:14:43 +00:00
parent a0a189aed2
commit 7625438ade
7 changed files with 387 additions and 126 deletions

View File

@@ -1759,9 +1759,9 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
return m_LSL_Functions.llXorBase64StringsCorrect(str1, str2);
}
public void llHTTPRequest(string url, List<string> parameters, string body)
public string llHTTPRequest(string url, List<string> parameters, string body)
{
m_LSL_Functions.llHTTPRequest(url, parameters, body);
return m_LSL_Functions.llHTTPRequest(url, parameters, body);
}
public void llResetLandBanList()