cf99fed1 | 11-Dec-2006 |
Daniel Stenberg |
PROT_CLOSEACTION doesn't have to be its own bit but can just as well just include the protocol bits of such actions, which currently only means FTP |
ca48b6bf | 07-Dec-2006 |
Daniel Stenberg |
fixed the printf formatting after I changed the type of 'excess' |
4dcd606b | 06-Dec-2006 |
Daniel Stenberg |
7.16.1 knows SFTP too |
393ddd6e | 06-Dec-2006 |
Daniel Stenberg |
clarify --limit-rate somewhat: it might send away/receive chunks of date in temporarily higher speeds than requested, but the given limiting is considered "over time" and is an average |
840e796a | 06-Dec-2006 |
Daniel Stenberg |
Sebastien Willemijns reported bug #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) which is about connections getting cut off prematurely when --limit-rate is used. While I found no suc
Sebastien Willemijns reported bug #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) which is about connections getting cut off prematurely when --limit-rate is used. While I found no such problems in my tests nor in my reading of the code, I found that the --limit-rate code was severly flawed (since it was moved into the lib, since 7.15.5) when used with the easy interface and it didn't work as documented so I reworked it somewhat and now it works for my tests.
show more ...
|
5fd096da | 05-Dec-2006 |
Daniel Stenberg |
Stefan Krause pointed out a compiler warning with a picky MSCV compiler when passing a curl_off_t argument to the Curl_read_rewind() function which takes an size_t argument. Curl_read_rewind(
Stefan Krause pointed out a compiler warning with a picky MSCV compiler when passing a curl_off_t argument to the Curl_read_rewind() function which takes an size_t argument. Curl_read_rewind() also had debug code left in it and it was put in a different source file with no good reason when only used from one single spot.
show more ...
|
eb29c5c2 | 05-Dec-2006 |
Daniel Stenberg |
removed the final traces of the closepolicy option |
1eb286e4 | 05-Dec-2006 |
Daniel Stenberg |
update after today's work |
ae76ebe2 | 05-Dec-2006 |
Daniel Stenberg |
Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is no code present in the library that receives the option. Since it was not possible to use, we know that no current
Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is no code present in the library that receives the option. Since it was not possible to use, we know that no current users exist and thus we simply removed it from the docs and made the code always use the default path of the code.
show more ...
|
e4505aef | 05-Dec-2006 |
Daniel Stenberg |
Jared Lundell filed bug report #1604956 (http://curl.haxx.se/bug/view.cgi?id=1604956) which identified setting CURLOPT_MAXCONNECTS to zero caused libcurl to SIGSEGV. Starting now, libcurl
Jared Lundell filed bug report #1604956 (http://curl.haxx.se/bug/view.cgi?id=1604956) which identified setting CURLOPT_MAXCONNECTS to zero caused libcurl to SIGSEGV. Starting now, libcurl will always internally use no less than 1 entry in the connection cache.
show more ...
|
d6b06128 | 05-Dec-2006 |
Daniel Stenberg |
better preprocessor check for recent MSVC versions |
4c65eb0a | 05-Dec-2006 |
Daniel Stenberg |
CURLOPT_FORBID_REUSE works again with a cleaned up order of doing things in Curl_done() |
318a8258 | 05-Dec-2006 |
Daniel Stenberg |
oops, fix belonging to the previous curl_getdate() fix since it makes MSVC use gmtime_r |
17ae28e0 | 05-Dec-2006 |
Daniel Stenberg |
Martin Skinner brought back bug report #1230118 to haunt us once again. (http://curl.haxx.se/bug/view.cgi?id=1230118) curl_getdate() did not work properly for all input dates on Windows. It w
Martin Skinner brought back bug report #1230118 to haunt us once again. (http://curl.haxx.se/bug/view.cgi?id=1230118) curl_getdate() did not work properly for all input dates on Windows. It was mostly seen on some TZ time zones using DST. Luckily, Martin also provided a fix.
show more ...
|
3c4f6224 | 05-Dec-2006 |
Daniel Stenberg |
Alexey Simak filed bug report #1600447 (http://curl.haxx.se/bug/view.cgi?id=1600447) in which he noted that active FTP connections don't work with the multi interface. The problem is here tha
Alexey Simak filed bug report #1600447 (http://curl.haxx.se/bug/view.cgi?id=1600447) in which he noted that active FTP connections don't work with the multi interface. The problem is here that the multi interface state machine has a state during which it can wait for the data connection to connect, but the active connection is not done in the same step in the sequence as the passive one is so it doesn't quite work for active. The active FTP code still use a blocking function to allow the remote server to connect. The fix (work-around is a better word) for this problem is to set the boolean prematurely that the data connection is completed, so that the "wait for connect" phase ends at once.
show more ...
|
3ce43764 | 05-Dec-2006 |
Daniel Stenberg |
Matt Witherspoon fixed a problem case when the CPU load went to 100% when a HTTP upload was disconnected: "What appears to be happening is that my system (Linux 2.6.17 and 2.6.13) is
Matt Witherspoon fixed a problem case when the CPU load went to 100% when a HTTP upload was disconnected: "What appears to be happening is that my system (Linux 2.6.17 and 2.6.13) is setting *only* POLLHUP on poll() when the conditions in my previous mail occur. As you can see, select.c:Curl_select() does not check for POLLHUP. So basically what was happening, is poll() was returning immediately (with POLLHUP set), but when Curl_select() looked at the bits, neither POLLERR or POLLOUT was set. This still caused Curl_readwrite() to be called, which quickly returned. Then the transfer() loop kept continuing at full speed forever."
show more ...
|
b555c60e | 05-Dec-2006 |
Daniel Stenberg |
curl.dsmirror.nl is another mirror |
2336d010 | 05-Dec-2006 |
Daniel Stenberg |
fixed in CVS |
b9af0d89 | 03-Dec-2006 |
Daniel Stenberg |
fix the libssh2 include path somewhat when --with-libssh2 is used and added a warning output if no OpenSSL was found |
6f2afe0c | 01-Dec-2006 |
Daniel Stenberg |
CURLOPT_CLOSEPOLICY can't be set |
d8c61d45 | 01-Dec-2006 |
Daniel Stenberg |
Toon Verwaest reported that there are servers that send the Content-Range: header in a third, not suppported by libcurl, format and we agreed that we could make the parser more forgiving to a
Toon Verwaest reported that there are servers that send the Content-Range: header in a third, not suppported by libcurl, format and we agreed that we could make the parser more forgiving to accept all the three found variations.
show more ...
|
7ae5ebbe | 30-Nov-2006 |
Daniel Stenberg |
the extra copy of downloads should be fixed too |
7335b71d | 29-Nov-2006 |
Daniel Stenberg |
two more |
9583b030 | 29-Nov-2006 |
Daniel Stenberg |
Is CURLOPT_FORBID_REUSE broken? |
3c81d5f1 | 27-Nov-2006 |
Daniel Stenberg |
adding notes of what to work on and fix before next release |