#
e01b7c1e |
| 28-Apr-2009 |
Daniel Stenberg |
- Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim Chen pointed out how curl couldn't upload with resume when reading from a pipe. This ended up with th
- Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim Chen pointed out how curl couldn't upload with resume when reading from a pipe. This ended up with the introduction of a new return code for the CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but that libcurl may try to resolve the situation anyway. In our case this means libcurl will attempt to instead read that much data from the stream instead of seeking and that way curl can now upload with resume when data is read from a stream!
show more ...
|
#
14df44dd |
| 26-Apr-2009 |
Daniel Stenberg |
- Bug report #2779733 (http://curl.haxx.se/bug/view.cgi?id=2779733) by Sven Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi interface and provided a patch tha
- Bug report #2779733 (http://curl.haxx.se/bug/view.cgi?id=2779733) by Sven Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi interface and provided a patch that fixed the problem!
show more ...
|
#
828a2628 |
| 24-Apr-2009 |
Daniel Stenberg |
- Kamil Dudka fixed another NSS-related leak when client certs were used.
|
#
ab1e5437 |
| 23-Apr-2009 |
Daniel Stenberg |
for is docs remarks
|
#
b84876ba |
| 20-Apr-2009 |
Daniel Stenberg |
- Leanic Lefever reported a crash and did some detailed research on why and how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The conclusion was that if an error is detected
- Leanic Lefever reported a crash and did some detailed research on why and how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The conclusion was that if an error is detected and Curl_done() is called for the connection, ftp_done() could at times return another error code that then would take precedence and that new code confused existing logic that works for the first error code (CURLE_SEND_ERROR) only.
show more ...
|
#
0f1ca293 |
| 20-Apr-2009 |
Daniel Stenberg |
- Gisle Vanem noticed that --libtool would produce bogus strings at times for OBJECTPOINT options. Now we've introduced a new function - my_setopt_str - within the app for setting plain s
- Gisle Vanem noticed that --libtool would produce bogus strings at times for OBJECTPOINT options. Now we've introduced a new function - my_setopt_str - within the app for setting plain string options to avoid the risk of this mistake happening.
show more ...
|
#
f1b820e5 |
| 17-Apr-2009 |
Daniel Stenberg |
mention Pramod Sharma and "persistent connections when doing FTP over a HTTP proxy"
|
#
379bfa5a |
| 13-Apr-2009 |
Daniel Stenberg |
- bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin Storsjo pointed out how setting CURLOPT_NOBODY to 0 could be downright confusing as it set the method to eith
- bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin Storsjo pointed out how setting CURLOPT_NOBODY to 0 could be downright confusing as it set the method to either GET or HEAD. The example he showed looked like: curl_easy_setopt(curl, CURLOPT_PUT, 1); curl_easy_setopt(curl, CURLOPT_NOBODY, 0); The new way doesn't alter the method until the request is about to start. If CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is 0 and the request happens to have been set to HEAD, it will then instead be set to GET. I believe this will be less surprising to users, and hopefully not hit any existing users badly.
show more ...
|
#
235c0077 |
| 13-Apr-2009 |
Daniel Stenberg |
- Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue is found in Redhat's bug tracker
- Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue is found in Redhat's bug tracker: https://bugzilla.redhat.com/show_bug.cgi?id=453612 There are still memory leaks present, but they seem to have other reasons.
show more ...
|
#
eed4a13b |
| 10-Apr-2009 |
Yang Tse |
Daniel Johnson improved the MacOSX-Framework shell script to now perform all the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64 libcurl.framework. Four way fat framewo
Daniel Johnson improved the MacOSX-Framework shell script to now perform all the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64 libcurl.framework. Four way fat framework requires OS X 10.5 SDK or later.
show more ...
|
#
ece891d6 |
| 08-Apr-2009 |
Yang Tse |
Sun compilers specific preprocessor block removed from curlbuild.h.dist
|
#
168fb3a8 |
| 02-Apr-2009 |
Yang Tse |
Fix curl_off_t definition for builds done using Sun compilers and a non-configured libcurl. In this case curl_off_t data type was gated to the off_t data type which depends on the _FILE_OFFSE
Fix curl_off_t definition for builds done using Sun compilers and a non-configured libcurl. In this case curl_off_t data type was gated to the off_t data type which depends on the _FILE_OFFSET_BITS. This configuration is exactly the unwanted configuration for our curl_off_t data type which must not depend on such setting. This breaks ABI for libcurl libraries built with Sun compilers which were built without having run the configure script with _FILE_OFFSET_BITS different than 64 and using the ILP32 data model.
show more ...
|
#
626f9bd8 |
| 02-Apr-2009 |
Dan Fandrich |
Added the curl_easy_recv return code fix
|
#
5f19822e |
| 18-Mar-2009 |
Daniel Stenberg |
- Kamil Dudka brought a patch that enables 6 additional crypto algorithms when NSS is used. These ciphers were added in NSS 3.4 and require to be enabled explicitly.
|
#
74ba4d79 |
| 13-Mar-2009 |
Daniel Stenberg |
- Use libssh2_version() to present the libssh2 version in case the libssh2 library is found to support it.
|
#
fa964366 |
| 12-Mar-2009 |
Yang Tse |
Fix TELNET transfers not being aborted upon write callback failures
|
#
f1db5057 |
| 11-Mar-2009 |
Yang Tse |
Added TELNET timeout support for Windows builds
|
#
bdec6f2b |
| 09-Mar-2009 |
Daniel Stenberg |
- Frank Hempel found out a bug and provided the fix: curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE option. It only enabled the cookie engine in the destina
- Frank Hempel found out a bug and provided the fix: curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE option. It only enabled the cookie engine in the destination handle if data->cookies is not NULL (where data is the source handle). In case of a newly initialized handle which just had the cookie support enabled by a curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was still NULL because the setopt-call only appends the value to data->change.cookielist, hence duplicating this handle would not have the cookie engine switched on. We also concluded that the slist-functionality would be suitable for being put in its own module rather than simply hanging out in lib/sendf.c so I created lib/slist.[ch] for them.
show more ...
|
#
c86c294f |
| 09-Mar-2009 |
Daniel Stenberg |
- Andreas Farber made the 'buildconf' script check for the presence of m4 scripts to make it detect a bad checkout earlier. People with older checkouts who don't do cvs update with the -d
- Andreas Farber made the 'buildconf' script check for the presence of m4 scripts to make it detect a bad checkout earlier. People with older checkouts who don't do cvs update with the -d option won't get the new dirs and then will get funny outputs that can be a bit hard to understand and fix.
show more ...
|
#
f4e8c406 |
| 08-Mar-2009 |
Daniel Stenberg |
- Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the allocation of the memory BIO was not being properly checked.
|
#
12bfcb50 |
| 08-Mar-2009 |
Daniel Stenberg |
- Andre Guibert de Bruet fixed the gnutls-using code: There are a few places in the gnutls code where we were checking for negative values for errors, when the man pages state that GNUTLS
- Andre Guibert de Bruet fixed the gnutls-using code: There are a few places in the gnutls code where we were checking for negative values for errors, when the man pages state that GNUTLS_E_SUCCESS is returned on success and other values indicate error conditions.
show more ...
|
#
9274d316 |
| 08-Mar-2009 |
Daniel Stenberg |
- Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that curl didn't use sprintf() in a way that is documented to work in POSIX but since we use our own printf() code (
- Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that curl didn't use sprintf() in a way that is documented to work in POSIX but since we use our own printf() code (from libcurl) that shouldn't be a problem. Nonetheless I modified the code to not rely on such particular features and to not cause further raised eyebrowse with no good reason.
show more ...
|
#
94bb7fe5 |
| 05-Mar-2009 |
Yang Tse |
Fix NTLM authentication memory leak on SSPI enabled Windows builds
|
#
ee73fc36 |
| 03-Mar-2009 |
Daniel Stenberg |
- David James brought a patch that make libcurl close (all) dead connections whenever you attempt to open a new connection.
|
#
e84dbd28 |
| 03-Mar-2009 |
Daniel Stenberg |
15 additional contributor from the 7.19.4 RELEASE-NOTES
|