- May 12, 2008
-
-
Daniel Stenberg authored
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used.
-
- May 09, 2008
-
-
Yang Tse authored
This also implies the removal of the winmm.lib dependency for WIN32.
-
Daniel Stenberg authored
and doing CONNECT to a proxy. The app would then busy-loop until the proxy completed its response.
-
- May 07, 2008
-
-
Daniel Stenberg authored
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a segfault when using krb5 ftp, but the krb4 code had the same problem.
-
Yang Tse authored
the use of microsecond resolution keys for internal splay trees. http://curl.haxx.se/mail/lib-2008-04/0513.html
-
- May 03, 2008
-
-
Daniel Stenberg authored
built debug-enabled.
-
Daniel Stenberg authored
when using CURL_AUTH_ANY" (http://curl.haxx.se/bug/view.cgi?id=1945240). The problem was that when libcurl rewound a stream meant for upload when it would prepare for a second request, it could accidentally continue the sending of the rewound data on the first request instead of on the second. Ben also provided test case 1030 that verifies this fix.
-
Daniel Stenberg authored
since libcurl used getprotobyname() and that isn't thread-safe. We now switched to use IPPROTO_TCP unconditionally, but perhaps the proper fix is to detect the thread-safe version of the function and use that. http://curl.haxx.se/mail/lib-2008-05/0011.html
-
- May 01, 2008
-
-
Daniel Stenberg authored
uses the CURLOPT_OPENSOCKETFUNCTION callback to create a unix domain socket to a http server.
-
- 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 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 22, 2008
-
-
Dan Fandrich authored
-
- 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
-
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 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
-
- 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
-
- Mar 31, 2008
-
-
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.
-
- 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
-
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
-
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
-
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
-
-
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.
-
Daniel Stenberg authored
does nothing with them, just to make sure libcurl users always use three arguments to this function. Due to its use of ... for the third argument, it is otherwise hard to detect abuse.
-
Michal Marek authored
works in C mode atm (http://curl.haxx.se/mail/lib-2008-02/0267.html , http://curl.haxx.se/mail/lib-2008-02/0292.html )
-
- Mar 09, 2008
-
-
Daniel Stenberg authored
easy handle if curl_easy_reset() was used between them. I fixed it and Brian verified that it cured his problem. - Brian Ulm reported that if you first tried to download a non-existing SFTP file and then fetched an existing one and re-used the handle, libcurl would still report the second one as non-existing as well! I fixed it abd Brian verified that it cured his problem.
-
- Mar 06, 2008
-
-
Michal Marek authored
Michael Calmer)
-
Yang Tse authored
select/poll calls will only be retried upon EINTR failures as it previously was in lib/select.c revision 1.29 In this way Curl_socket_ready() and Curl_poll() will again fail on any select/poll errors different than EINTR.
-