diff options
author | Dr Scofield | 2009-03-25 07:36:56 +0000 |
---|---|---|
committer | Dr Scofield | 2009-03-25 07:36:56 +0000 |
commit | 0bb3d2e6d75baa244da1906e0466448cf4acb3be (patch) | |
tree | 324b6234d789311048899f0044756889cad39f23 /OpenSim/Framework/Servers | |
parent | HGStandaloneInventoryService now serves inventory assets. No need for clients... (diff) | |
download | opensim-SC_OLD-0bb3d2e6d75baa244da1906e0466448cf4acb3be.zip opensim-SC_OLD-0bb3d2e6d75baa244da1906e0466448cf4acb3be.tar.gz opensim-SC_OLD-0bb3d2e6d75baa244da1906e0466448cf4acb3be.tar.bz2 opensim-SC_OLD-0bb3d2e6d75baa244da1906e0466448cf4acb3be.tar.xz |
cleanup
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/OSHttpResponse.cs | 10 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/Tests/OSHttpTests.cs | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 28fb9df..3f3b1b8 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -54,7 +54,7 @@ namespace OpenSim.Framework.Servers | |||
54 | public volatile bool HTTPDRunning = false; | 54 | public volatile bool HTTPDRunning = false; |
55 | 55 | ||
56 | protected Thread m_workerThread; | 56 | protected Thread m_workerThread; |
57 | protected HttpListener m_httpListener; | 57 | // protected HttpListener m_httpListener; |
58 | protected CoolHTTPListener m_httpListener2; | 58 | protected CoolHTTPListener m_httpListener2; |
59 | protected Dictionary<string, XmlRpcMethod> m_rpcHandlers = new Dictionary<string, XmlRpcMethod>(); | 59 | protected Dictionary<string, XmlRpcMethod> m_rpcHandlers = new Dictionary<string, XmlRpcMethod>(); |
60 | protected Dictionary<string, bool> m_rpcHandlersKeepAlive = new Dictionary<string, bool>(); | 60 | protected Dictionary<string, bool> m_rpcHandlersKeepAlive = new Dictionary<string, bool>(); |
@@ -371,7 +371,7 @@ namespace OpenSim.Framework.Servers | |||
371 | } | 371 | } |
372 | 372 | ||
373 | request.InputStream.Close(); | 373 | request.InputStream.Close(); |
374 | if (!response.IsContentTypeSet) response.ContentType = requestHandler.ContentType; | 374 | response.ContentType = requestHandler.ContentType; |
375 | if (!response.SendChunked) | 375 | if (!response.SendChunked) |
376 | response.ContentLength64 = buffer.LongLength; | 376 | response.ContentLength64 = buffer.LongLength; |
377 | 377 | ||
diff --git a/OpenSim/Framework/Servers/OSHttpResponse.cs b/OpenSim/Framework/Servers/OSHttpResponse.cs index ff02edd..e46d605 100644 --- a/OpenSim/Framework/Servers/OSHttpResponse.cs +++ b/OpenSim/Framework/Servers/OSHttpResponse.cs | |||
@@ -65,11 +65,11 @@ namespace OpenSim.Framework.Servers | |||
65 | /// <remarks> | 65 | /// <remarks> |
66 | /// IsContentTypeSet will go away together with .NET base. | 66 | /// IsContentTypeSet will go away together with .NET base. |
67 | /// </remarks> | 67 | /// </remarks> |
68 | public bool IsContentTypeSet | 68 | // public bool IsContentTypeSet |
69 | { | 69 | // { |
70 | get { return _contentTypeSet; } | 70 | // get { return _contentTypeSet; } |
71 | } | 71 | // } |
72 | private bool _contentTypeSet; | 72 | // private bool _contentTypeSet; |
73 | 73 | ||
74 | 74 | ||
75 | /// <summary> | 75 | /// <summary> |
diff --git a/OpenSim/Framework/Servers/Tests/OSHttpTests.cs b/OpenSim/Framework/Servers/Tests/OSHttpTests.cs index 3a297bf..f3872a6 100644 --- a/OpenSim/Framework/Servers/Tests/OSHttpTests.cs +++ b/OpenSim/Framework/Servers/Tests/OSHttpTests.cs | |||
@@ -281,7 +281,7 @@ namespace OpenSim.Framework.Servers.Tests | |||
281 | { | 281 | { |
282 | get { return _cookies; } | 282 | get { return _cookies; } |
283 | } | 283 | } |
284 | private ResponseCookies _cookies; | 284 | private ResponseCookies _cookies = null; |
285 | 285 | ||
286 | public TestHttpResponse() | 286 | public TestHttpResponse() |
287 | { | 287 | { |