Add interface, stubbed implementation and

script stub for llRequestSecureURL().
This commit is contained in:
Charles Krinke
2009-05-13 01:06:06 +00:00
parent e206a9ce88
commit c23bd2d6ea
3 changed files with 14 additions and 1 deletions

View File

@@ -7953,6 +7953,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
// wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg);
}
public LSL_String llRequestSecureURL();
{
m_host.AddScriptLPS(1);
NotImplemented("llRequestSecureURL");
return UUID.Zero.ToString();
}
public LSL_String llRequestSimulatorData(string simulator, int data)
{
IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_itemID, "OSSL");
@@ -8029,7 +8036,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_String llRequestURL()
{
m_host.AddScriptLPS(1);
NotImplemented("llRequestURLe");
NotImplemented("llRequestURL");
return UUID.Zero.ToString();
}