further progress on HttpServer integration: OSHttpRequest can now be

instantiated from both .NET and HttpServer code path.
This commit is contained in:
Dr Scofield
2008-07-07 09:47:36 +00:00
parent 56c6bdcb26
commit 7f0bcc5aa1
4 changed files with 65 additions and 26 deletions

View File

@@ -73,7 +73,7 @@ namespace OpenSim.Framework.Servers
}
public WebHeaderCollection Headers;
public CookieCollection Cookies;
// public CookieCollection Cookies;
private bool _keepAlive;
public bool KeepAlive
@@ -144,7 +144,7 @@ namespace OpenSim.Framework.Servers
ContentLength64 = resp.ContentLength64;
_contentType = resp.ContentType;
Headers = resp.Headers;
Cookies = resp.Cookies;
// Cookies = resp.Cookies;
KeepAlive = resp.KeepAlive;
OutputStream = resp.OutputStream;
RedirectLocation = resp.RedirectLocation;