diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-11-19 10:15:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-11-19 10:15:19 +0000 |
commit | 797bc8504c0c1d718b088dca0622d920e3c6fcff (patch) | |
tree | b23caa3b0da0cba82d51a1a188d0552133dccc67 /CHANGES | |
parent | 305f4d92ef4b25a3139112592fef31256ca3abd8 (diff) |
- Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got
when uploading files to a single FTP server using multiple easy handle
handles with the multi interface. Occasionally a handle would stall in
mysterious ways.
The problem turned out to be a side-effect of the ConnectionExists()
function's eagerness to re-use a handle for HTTP pipelining so it would
select it even if already being in use, due to an inadequate check for its
chances of being used for pipelnining.
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -6,6 +6,17 @@ Changelog +Daniel Stenberg (19 Nov 2008) +- Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got + when uploading files to a single FTP server using multiple easy handle + handles with the multi interface. Occasionally a handle would stall in + mysterious ways. + + The problem turned out to be a side-effect of the ConnectionExists() + function's eagerness to re-use a handle for HTTP pipelining so it would + select it even if already being in use, due to an inadequate check for its + chances of being used for pipelnining. + Daniel Fandrich (17 Nov 2008) - Added more compiler warning options for gcc 4.3 |