- Apr 30, 2008
-
-
Daniel Stenberg authored
redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now introduce the new CURLINFO_REDIRECT_URL option that lets applications extract the URL libcurl would've redirected to if it had been told to. This then enables the application to continue to that URL as it thinks is suitable, without having to re-implement the magic of creating the new URL from the Location: header etc. Test 1029 verifies it.
-
- Apr 29, 2008
-
-
Yang Tse authored
-
Dan Fandrich authored
-
- Apr 28, 2008
-
-
Daniel Stenberg authored
libcurl" (http://curl.haxx.se/bug/view.cgi?id=1951588) which seems to be an identical report to what Denis Golovan reported in http://curl.haxx.se/mail/lib-2008-02/0108.html The FTP code didn't reset the user/password pointers properly even though there might've been a new struct/cconnection getting used.
-
- Apr 26, 2008
-
-
Daniel Stenberg authored
caused any change in curl-related files
-
- Apr 25, 2008
-
-
Yang Tse authored
-
Dan Fandrich authored
-
- Apr 22, 2008
-
-
Dan Fandrich authored
-
- Apr 18, 2008
-
-
Dan Fandrich authored
and --help options.
-
- Apr 14, 2008
-
-
Michal Marek authored
discussed in http://curl.haxx.se/mail/lib-2008-04/0291.html
-
Daniel Stenberg authored
properly acknowledging the timeout values, like if you pulled the network plug in the midst of it.
-
Daniel Stenberg authored
return code in the Negotiate code.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1942022) pointing out a mistake in the lib/Makefile.vc[68] makefiles' release-ssl-dll target.
-
Daniel Stenberg authored
you used -i and -I.
-
- Apr 12, 2008
-
-
Daniel Stenberg authored
was not checked for a NULL return, in the Negotiate code.
-
- Apr 10, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
by Ben Combee where libcurl would send the wrong cookie to a redirected server. libcurl was doing the right thing in this test case.
-
- Apr 07, 2008
-
-
Michal Marek authored
Define HAVE_GSSMIT if <gssapi/{gssapi.h,gssapi_generic.h,gssapi_krb5.h}> are available, otherwise define HAVE_GSSHEIMDAL if <gssapi.h> is available. Only define GSS_C_NT_HOSTBASED_SERVICE to gss_nt_service_name if GSS_C_NT_HOSTBASED_SERVICE isn't declared by the gssapi headers. This should avoid breakage in case we wrongly recognize Heimdal as MIT again.
-
- Apr 05, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
message when libcurl doesn't get a 220 back immediately on connect, I now changed it to be more specific on what the problem is. Also worth noticing: while the bug report contains an example where the response is: 421 There are too many connected users, please try again later we cannot assume that the error message will always be this readable nor that it fits within a particular boundary etc.
-
- Apr 04, 2008
-
-
Dan Fandrich authored
-
- Apr 03, 2008
-
-
Daniel Stenberg authored
GET simply because previously when you set CURLOPT_NOBODY to TRUE first and then FALSE you'd end up in a broken state where a HTTP request would do a HEAD by still act a lot like for a GET and hang waiting for the content etc.
-
Daniel Stenberg authored
-
Dan Fandrich authored
example programs.
-
- Mar 31, 2008
-
-
Michal Marek authored
$capath is known to configure, so it can be defined in config.h instead.
-
Daniel Stenberg authored
application to provide data for a multipart with the read callback. Note that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the stream option is used. This feature is verified by the new test case 554. This feature was sponsored by Xponaut.
-
Dan Fandrich authored
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal.
-
- Mar 30, 2008
-
-
Daniel Stenberg authored
-
- Mar 27, 2008
-
-
Daniel Stenberg authored
path didn't work properly but now it does!
-
Daniel Stenberg authored
the progress callback for the first (potentially huge) piece of body data sent together with the POST request headers in the initial send().
-
- Mar 25, 2008
-
-
Daniel Stenberg authored
libcurl wasn't built to use OpenSSL as that is a prerequisite for this option to function!
-
- Mar 22, 2008
-
-
Daniel Stenberg authored
case 617 (which was added by Daniel Fandrich 5 Mar 2008).
-
- Mar 20, 2008
-
-
Dan Fandrich authored
support when curl didn't even have regular LDAP support. It looks like this could happen when the --enable-ldaps configure switch is given but configure couldn't find the LDAP headers or libraries.
-
Michal Marek authored
default instead of a ca bundle. The configure script will also look for a ca path if no ca bundle is found and no option given. - Fixed detection of previously installed curl-ca-bundle.crt
-
- Mar 18, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
SFTP quote command reported by Vincent Le Normand, but left it disabled.
-
Michal Marek authored
- Added macros for curl_share_setopt and curl_multi_setopt to check at least the correct number of arguments.
-
- Mar 13, 2008
-
-
Dan Fandrich authored
reproduce the --ftp-create-dirs problem reported by Brian Ulm, but that seems to need a call curl_easy_reset() which this test case doesn't do.
-
Daniel Stenberg authored
CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the handle and uploaded another file to another directory that needed to be created, the second upload would fail. Another case of a state variable that wasn't properly reset between requests. - I rewrote the 100-continue code to use a single state variable instead of the previous two ones. I think it made the logic somewhat clearer.
-
- Mar 11, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1911069) that identified a race condition in the name resolver code when the DNS cache is shared between multiple easy handles, each running in simultaneous threads that could cause crashes.
-