- Dec 11, 2006
-
-
Daniel Stenberg authored
something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 538 to verify the fix. I also noted that the connection would get cached in that case, which doesn't make sense since it cannot be re-use when the authentication has failed. I fixed that issue too at the same time, and also that the path would be "remembered" in vain for cases where the connection was about to get closed.
-
Daniel Stenberg authored
include the protocol bits of such actions, which currently only means FTP
-
- Dec 07, 2006
-
-
Daniel Stenberg authored
-
- Dec 06, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
temporarily higher speeds than requested, but the given limiting is considered "over time" and is an average
-
Daniel Stenberg authored
(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.
-
- Dec 05, 2006
-
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
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.
-
Daniel Stenberg authored
(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.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Curl_done()
-
Daniel Stenberg authored
use gmtime_r
-
Daniel Stenberg authored
(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.
-
Daniel Stenberg authored
(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.
-
Daniel Stenberg authored
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."
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Dec 03, 2006
-
-
Daniel Stenberg authored
a warning output if no OpenSSL was found
-
- Dec 01, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
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.
-
- Nov 30, 2006
-
-
Daniel Stenberg authored
-
- Nov 29, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Nov 27, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
holding the conn->data value
-
- Nov 25, 2006
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring.
-
Daniel Stenberg authored
-
Yang Tse authored
-
- Nov 24, 2006
-
-
Daniel Stenberg authored
-
Yang Tse authored
as appropriate for platforms that don't have autotools support
-
- Nov 22, 2006
-
-
Daniel Stenberg authored
struct, and there are domain/search entries in /etc/resolv.conf, the domains of the options struct will be overridden.
-
Daniel Stenberg authored
-
Yang Tse authored
defining HAVE_SIGNAL_H if the header is available. Added a check in configure that tests if the sig_atomic_t type is available, defining HAVE_SIG_ATOMIC_T if it is available. Providing a suitable default in setup_once.h if not available. Added a check in configure that tests if the sig_atomic_t type is already defined as volatile, defining HAVE_SIG_ATOMIC_T_VOLATILE if it is available and already defined as volatile.
-
- Nov 21, 2006
-
-
Daniel Stenberg authored
-
- Nov 20, 2006