diff options
author | Charles Krinke | 2009-05-13 01:06:06 +0000 |
---|---|---|
committer | Charles Krinke | 2009-05-13 01:06:06 +0000 |
commit | c23bd2d6eaffd05b158d92c539fa6c5090b967b2 (patch) | |
tree | 6b7884d95905fa4f5fe8bdba4a5c6cb719e617af /OpenSim/Region/ScriptEngine/Shared/Api/Implementation | |
parent | Remove some no longer needed debug. (diff) | |
download | opensim-SC-c23bd2d6eaffd05b158d92c539fa6c5090b967b2.zip opensim-SC-c23bd2d6eaffd05b158d92c539fa6c5090b967b2.tar.gz opensim-SC-c23bd2d6eaffd05b158d92c539fa6c5090b967b2.tar.bz2 opensim-SC-c23bd2d6eaffd05b158d92c539fa6c5090b967b2.tar.xz |
Add interface, stubbed implementation and
script stub for llRequestSecureURL().
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 4d368c2..2e93508 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7953,6 +7953,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7953 | // wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg); | 7953 | // wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg); |
7954 | } | 7954 | } |
7955 | 7955 | ||
7956 | public LSL_String llRequestSecureURL(); | ||
7957 | { | ||
7958 | m_host.AddScriptLPS(1); | ||
7959 | NotImplemented("llRequestSecureURL"); | ||
7960 | return UUID.Zero.ToString(); | ||
7961 | } | ||
7962 | |||
7956 | public LSL_String llRequestSimulatorData(string simulator, int data) | 7963 | public LSL_String llRequestSimulatorData(string simulator, int data) |
7957 | { | 7964 | { |
7958 | IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_itemID, "OSSL"); | 7965 | IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_itemID, "OSSL"); |
@@ -8029,7 +8036,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
8029 | public LSL_String llRequestURL() | 8036 | public LSL_String llRequestURL() |
8030 | { | 8037 | { |
8031 | m_host.AddScriptLPS(1); | 8038 | m_host.AddScriptLPS(1); |
8032 | NotImplemented("llRequestURLe"); | 8039 | NotImplemented("llRequestURL"); |
8033 | return UUID.Zero.ToString(); | 8040 | return UUID.Zero.ToString(); |
8034 | } | 8041 | } |
8035 | 8042 | ||