aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Scripting/LSLHttp
diff options
context:
space:
mode:
authorMelanie Thielker2009-05-13 03:09:30 +0000
committerMelanie Thielker2009-05-13 03:09:30 +0000
commitba8850f25446fafd0fe49b80be84a25d06303d65 (patch)
treec2389294796ffa5e32bf6039871aca1a0ca009bc /OpenSim/Region/CoreModules/Scripting/LSLHttp
parentAdd a skeleton for the LSLHttpServer (diff)
downloadopensim-SC_OLD-ba8850f25446fafd0fe49b80be84a25d06303d65.zip
opensim-SC_OLD-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.gz
opensim-SC_OLD-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.bz2
opensim-SC_OLD-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.xz
Plumb request and return URL functions.
Implements llRequestURL, llRequestSecureURL, llReleaseURL
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting/LSLHttp')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
index 457de99..a79975c 100644
--- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs
@@ -92,12 +92,14 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
92 { 92 {
93 } 93 }
94 94
95 public void RequestURL(IScriptModule engine, SceneObjectPart host, UUID itemID) 95 public UUID RequestURL(IScriptModule engine, SceneObjectPart host, UUID itemID)
96 { 96 {
97 return UUID.Zero;
97 } 98 }
98 99
99 public void RequestSecureURL(IScriptModule engine, SceneObjectPart host, UUID itemID) 100 public UUID RequestSecureURL(IScriptModule engine, SceneObjectPart host, UUID itemID)
100 { 101 {
102 return UUID.Zero;
101 } 103 }
102 104
103 public void ReleaseURL(string url) 105 public void ReleaseURL(string url)
@@ -112,5 +114,10 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
112 { 114 {
113 return String.Empty; 115 return String.Empty;
114 } 116 }
117
118 public int GetFreeUrls()
119 {
120 return 0;
121 }
115 } 122 }
116} 123}