aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/OSHttpResponse.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Servers/OSHttpResponse.cs')
-rw-r--r--OpenSim/Framework/Servers/OSHttpResponse.cs4
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;