diff options
author | Charles Krinke | 2009-05-13 00:29:50 +0000 |
---|---|---|
committer | Charles Krinke | 2009-05-13 00:29:50 +0000 |
commit | ba99f2a1a5bf24f3682ec889eeccf9cd02e37105 (patch) | |
tree | c6636b760ff3eb7ca5cab1660ccb1b18bcd6011d /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Fix interface registration/deregistration mechanics (diff) | |
download | opensim-SC_OLD-ba99f2a1a5bf24f3682ec889eeccf9cd02e37105.zip opensim-SC_OLD-ba99f2a1a5bf24f3682ec889eeccf9cd02e37105.tar.gz opensim-SC_OLD-ba99f2a1a5bf24f3682ec889eeccf9cd02e37105.tar.bz2 opensim-SC_OLD-ba99f2a1a5bf24f3682ec889eeccf9cd02e37105.tar.xz |
Add interface, stub and bare implmentation for llHTTPResponse().
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index e4cfedb..945932e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -854,6 +854,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
854 | return m_LSL_Functions.llHTTPRequest(url, parameters, body); | 854 | return m_LSL_Functions.llHTTPRequest(url, parameters, body); |
855 | } | 855 | } |
856 | 856 | ||
857 | public void llHTTPResponse(string url, int status, string body) | ||
858 | { | ||
859 | m_LSL_Functions.llHTTPResponse(url, status, body); | ||
860 | } | ||
861 | |||
857 | public LSL_String llInsertString(string dst, int position, string src) | 862 | public LSL_String llInsertString(string dst, int position, string src) |
858 | { | 863 | { |
859 | return m_LSL_Functions.llInsertString(dst, position, src); | 864 | return m_LSL_Functions.llInsertString(dst, position, src); |