diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-02-19 10:36:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-02-19 10:36:20 +0000 |
commit | 5af0629ba5d09b9820fe3752279906147c310e3e (patch) | |
tree | 3ffa67881c7f9290f427982c7d7781031d9c6248 /RELEASE-NOTES | |
parent | a776e5ad310f99ee0b4bab360816e30e1ce9d89c (diff) |
- Patrik Thunstrom reported a problem and helped me repeat it. It turned out
libcurl did a superfluous 1000ms wait when doing SFTP downloads!
We read data with libssh2 while doing the "DO" operation for SFTP and then
when we were about to start getting data for the actual file part, the
"TRANSFER" part, we waited for socket action (in 1000ms) before doing a
libssh2-read. But in this case libssh2 had already read and buffered the
data so we ended up always just waiting 1000ms before we get working on the
data!
Diffstat (limited to 'RELEASE-NOTES')
-rw-r--r-- | RELEASE-NOTES | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f9d6ca3db..d6da34205 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -35,6 +35,7 @@ This release includes the following bugfixes: CURLOPT_NOBODY set true o memory leak on some libz errors for content encodings o NSS-enabled build is repaired + o superfluous wait in SFTP downloads removed This release includes the following known bugs: @@ -46,6 +47,6 @@ advice from friends like these: Lisa Xu, Daniel Fandrich, Craig A West, Alexey Borzov, Sharad Gupta, Peter Sylvester, Chad Monroe, Markus Moeller, Yang Tse, Scott Cantor, Patrick Scott, Hidemoto Nakada, Jocelyn Jaubert, Andre Guibert de Bruet, - Kamil Dudka + Kamil Dudka, Patrik Thunstrom Thanks! (and sorry if I forgot to mention someone) |