diff options
author | Teravus Ovares | 2008-12-20 15:09:01 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-20 15:09:01 +0000 |
commit | 8f07f2e8b006ef7712318e29a2793f939f2c90b5 (patch) | |
tree | 9042d812f2271777c1825194af4086da4d5dc01e /OpenSim/Framework/Servers/OSHttpResponse.cs | |
parent | Slowing things down a little bit in TPs, with a couple of extra Thread.Sleep ... (diff) | |
download | opensim-SC_OLD-8f07f2e8b006ef7712318e29a2793f939f2c90b5.zip opensim-SC_OLD-8f07f2e8b006ef7712318e29a2793f939f2c90b5.tar.gz opensim-SC_OLD-8f07f2e8b006ef7712318e29a2793f939f2c90b5.tar.bz2 opensim-SC_OLD-8f07f2e8b006ef7712318e29a2793f939f2c90b5.tar.xz |
* A few more fixes to HttpServer.
* http://www.codeplex.com/webserver/WorkItem/View.aspx?WorkItemId=3110 fix erronious call to beginread that caused an exception which was caught and ignored (increase performance)
* Pass socket into httpclientcontectImp and call the disconnect + reuse method so the socket can be reused quicker (increase performance)
* Ensured that in every error scenario beginAccept is called (stability)
* Fixed header casing (standards compliance)
* Fixed Connection: close handling (standards compliance)
Diffstat (limited to 'OpenSim/Framework/Servers/OSHttpResponse.cs')
-rw-r--r-- | OpenSim/Framework/Servers/OSHttpResponse.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/OSHttpResponse.cs b/OpenSim/Framework/Servers/OSHttpResponse.cs index 6b20bf3..4947156 100644 --- a/OpenSim/Framework/Servers/OSHttpResponse.cs +++ b/OpenSim/Framework/Servers/OSHttpResponse.cs | |||
@@ -298,6 +298,7 @@ namespace OpenSim.Framework.Servers | |||
298 | { | 298 | { |
299 | _httpResponse.Body.Flush(); | 299 | _httpResponse.Body.Flush(); |
300 | _httpResponse.Send(); | 300 | _httpResponse.Send(); |
301 | |||
301 | } | 302 | } |
302 | } | 303 | } |
303 | } | 304 | } |