diff options
author | Dr Scofield | 2008-07-07 09:47:36 +0000 |
---|---|---|
committer | Dr Scofield | 2008-07-07 09:47:36 +0000 |
commit | 7f0bcc5aa1f7afc0d24734978bfd784ae8ac1558 (patch) | |
tree | 1ead06aa0a5c7c7329b17d32509cff086126d99a /OpenSim/Framework/Servers/OSHttpResponse.cs | |
parent | Addresses more problem box cut angles (diff) | |
download | opensim-SC_OLD-7f0bcc5aa1f7afc0d24734978bfd784ae8ac1558.zip opensim-SC_OLD-7f0bcc5aa1f7afc0d24734978bfd784ae8ac1558.tar.gz opensim-SC_OLD-7f0bcc5aa1f7afc0d24734978bfd784ae8ac1558.tar.bz2 opensim-SC_OLD-7f0bcc5aa1f7afc0d24734978bfd784ae8ac1558.tar.xz |
further progress on HttpServer integration: OSHttpRequest can now be
instantiated from both .NET and HttpServer code path.
Diffstat (limited to 'OpenSim/Framework/Servers/OSHttpResponse.cs')
-rw-r--r-- | OpenSim/Framework/Servers/OSHttpResponse.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/OSHttpResponse.cs b/OpenSim/Framework/Servers/OSHttpResponse.cs index 72be790..e1ab005 100644 --- a/OpenSim/Framework/Servers/OSHttpResponse.cs +++ b/OpenSim/Framework/Servers/OSHttpResponse.cs | |||
@@ -73,7 +73,7 @@ namespace OpenSim.Framework.Servers | |||
73 | } | 73 | } |
74 | 74 | ||
75 | public WebHeaderCollection Headers; | 75 | public WebHeaderCollection Headers; |
76 | public CookieCollection Cookies; | 76 | // public CookieCollection Cookies; |
77 | 77 | ||
78 | private bool _keepAlive; | 78 | private bool _keepAlive; |
79 | public bool KeepAlive | 79 | public bool KeepAlive |
@@ -144,7 +144,7 @@ namespace OpenSim.Framework.Servers | |||
144 | ContentLength64 = resp.ContentLength64; | 144 | ContentLength64 = resp.ContentLength64; |
145 | _contentType = resp.ContentType; | 145 | _contentType = resp.ContentType; |
146 | Headers = resp.Headers; | 146 | Headers = resp.Headers; |
147 | Cookies = resp.Cookies; | 147 | // Cookies = resp.Cookies; |
148 | KeepAlive = resp.KeepAlive; | 148 | KeepAlive = resp.KeepAlive; |
149 | OutputStream = resp.OutputStream; | 149 | OutputStream = resp.OutputStream; |
150 | RedirectLocation = resp.RedirectLocation; | 150 | RedirectLocation = resp.RedirectLocation; |