diff options
author | Jeff Ames | 2009-07-23 15:32:11 +0000 |
---|---|---|
committer | Jeff Ames | 2009-07-23 15:32:11 +0000 |
commit | a133e83f3ab38ad7abf0b3c591421d3eac418c0c (patch) | |
tree | 0c0de3d37510a54d8668402d310fc0cf7e8c255d /OpenSim/Region/CoreModules/Scripting | |
parent | Minor: rename libsl to libomv in Contributors.txt. (diff) | |
download | opensim-SC-a133e83f3ab38ad7abf0b3c591421d3eac418c0c.zip opensim-SC-a133e83f3ab38ad7abf0b3c591421d3eac418c0c.tar.gz opensim-SC-a133e83f3ab38ad7abf0b3c591421d3eac418c0c.tar.bz2 opensim-SC-a133e83f3ab38ad7abf0b3c591421d3eac418c0c.tar.xz |
Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/CoreModules/Scripting')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index a74032f..7082e85 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |||
@@ -240,12 +240,12 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp | |||
240 | 240 | ||
241 | private Hashtable HttpRequestHandler(Hashtable request) | 241 | private Hashtable HttpRequestHandler(Hashtable request) |
242 | { | 242 | { |
243 | string uri = request["uri"].ToString(); | 243 | string uri = request["uri"].ToString(); |
244 | //A solution to this ugly mess would be to use only the /lslhttp/<UUID>/ part of the URI as the key. | 244 | //A solution to this ugly mess would be to use only the /lslhttp/<UUID>/ part of the URI as the key. |
245 | UrlData url = m_UrlMap["http://"+System.Environment.MachineName+":"+m_HttpServer.Port.ToString()+uri]; | 245 | UrlData url = m_UrlMap["http://"+System.Environment.MachineName+":"+m_HttpServer.Port.ToString()+uri]; |
246 | 246 | ||
247 | //UUID.Random() below is a hack! Eventually we will do HTTP requests and responses properly. | 247 | //UUID.Random() below is a hack! Eventually we will do HTTP requests and responses properly. |
248 | url.engine.PostScriptEvent(url.itemID, "http_request", new Object[] { UUID.Random().ToString(), request["http-method"].ToString(), request["body"].ToString() }); | 248 | url.engine.PostScriptEvent(url.itemID, "http_request", new Object[] { UUID.Random().ToString(), request["http-method"].ToString(), request["body"].ToString() }); |
249 | 249 | ||
250 | Hashtable response = new Hashtable(); | 250 | Hashtable response = new Hashtable(); |
251 | response["int_response_code"] = 200; | 251 | response["int_response_code"] = 200; |