diff options
author | lbsa71 | 2007-12-27 21:41:48 +0000 |
---|---|---|
committer | lbsa71 | 2007-12-27 21:41:48 +0000 |
commit | efd90b56b761219af6425b1c7a2cdd3b6ffb4de2 (patch) | |
tree | bf5b897e1e3c13211e3e2fc61d30508b94c928c0 /OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs | |
parent | * removed always true if (diff) | |
download | opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.zip opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.gz opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.bz2 opensim-SC_OLD-efd90b56b761219af6425b1c7a2cdd3b6ffb4de2.tar.xz |
* Optimized usings
* shortened references
* Removed redundant 'this'
* Normalized EOF
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs index fdd7260..e403385 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/LSLLongCmdHandler.cs | |||
@@ -202,17 +202,16 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
202 | 202 | ||
203 | public void CheckHttpRequests() | 203 | public void CheckHttpRequests() |
204 | { | 204 | { |
205 | IHttpRequests iHttpReq = | 205 | IHttpRequests iHttpReq = |
206 | m_ScriptEngine.World.RequestModuleInterface<IHttpRequests>(); | 206 | m_ScriptEngine.World.RequestModuleInterface<IHttpRequests>(); |
207 | 207 | ||
208 | HttpRequestClass httpInfo = null; | 208 | HttpRequestClass httpInfo = null; |
209 | 209 | ||
210 | if( iHttpReq != null ) | 210 | if (iHttpReq != null) |
211 | httpInfo = iHttpReq.GetNextCompletedRequest(); | 211 | httpInfo = iHttpReq.GetNextCompletedRequest(); |
212 | 212 | ||
213 | while ( httpInfo != null ) | 213 | while (httpInfo != null) |
214 | { | 214 | { |
215 | |||
216 | //Console.WriteLine("PICKED HTTP REQ:" + httpInfo.response_body + httpInfo.status); | 215 | //Console.WriteLine("PICKED HTTP REQ:" + httpInfo.response_body + httpInfo.status); |
217 | 216 | ||
218 | // Deliver data to prim's remote_data handler | 217 | // Deliver data to prim's remote_data handler |
@@ -221,7 +220,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
221 | // only returns the byte for HTTP_BODY_TRUNCATED, which is not | 220 | // only returns the byte for HTTP_BODY_TRUNCATED, which is not |
222 | // implemented here yet anyway. Should be fixed if/when maxsize | 221 | // implemented here yet anyway. Should be fixed if/when maxsize |
223 | // is supported | 222 | // is supported |
224 | 223 | ||
225 | object[] resobj = new object[] | 224 | object[] resobj = new object[] |
226 | { | 225 | { |
227 | httpInfo.reqID.ToString(), httpInfo.status, null, httpInfo.response_body | 226 | httpInfo.reqID.ToString(), httpInfo.status, null, httpInfo.response_body |
@@ -254,7 +253,8 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
254 | //Deliver data to prim's remote_data handler | 253 | //Deliver data to prim's remote_data handler |
255 | object[] resobj = new object[] | 254 | object[] resobj = new object[] |
256 | { | 255 | { |
257 | 2, rInfo.GetChannelKey().ToString(), rInfo.GetMessageID().ToString(), "", rInfo.GetIntValue(), | 256 | 2, rInfo.GetChannelKey().ToString(), rInfo.GetMessageID().ToString(), "", |
257 | rInfo.GetIntValue(), | ||
258 | rInfo.GetStrVal() | 258 | rInfo.GetStrVal() |
259 | }; | 259 | }; |
260 | m_ScriptEngine.m_EventQueueManager.AddToScriptQueue( | 260 | m_ScriptEngine.m_EventQueueManager.AddToScriptQueue( |
@@ -284,4 +284,4 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
284 | } | 284 | } |
285 | } | 285 | } |
286 | } | 286 | } |
287 | } | 287 | } \ No newline at end of file |