Add interface, stub and bare implmentation for llHTTPResponse().

This commit is contained in:
Charles Krinke
2009-05-13 00:29:50 +00:00
parent 88371e4f98
commit ba99f2a1a5
3 changed files with 16 additions and 0 deletions

View File

@@ -854,6 +854,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llHTTPRequest(url, parameters, body);
}
public void llHTTPResponse(string url, int status, string body)
{
m_LSL_Functions.llHTTPResponse(url, status, body);
}
public LSL_String llInsertString(string dst, int position, string src)
{
return m_LSL_Functions.llInsertString(dst, position, src);