diff options
author | Melanie Thielker | 2009-05-13 03:09:30 +0000 |
---|---|---|
committer | Melanie Thielker | 2009-05-13 03:09:30 +0000 |
commit | ba8850f25446fafd0fe49b80be84a25d06303d65 (patch) | |
tree | c2389294796ffa5e32bf6039871aca1a0ca009bc /OpenSim/Region/CoreModules | |
parent | Add a skeleton for the LSLHttpServer (diff) | |
download | opensim-SC-ba8850f25446fafd0fe49b80be84a25d06303d65.zip opensim-SC-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.gz opensim-SC-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.bz2 opensim-SC-ba8850f25446fafd0fe49b80be84a25d06303d65.tar.xz |
Plumb request and return URL functions.
Implements llRequestURL, llRequestSecureURL, llReleaseURL
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 11 |
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 | } |