- Mar 18, 2008
-
-
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.
-
- Mar 04, 2008
-
-
Daniel Stenberg authored
-
- Mar 01, 2008
-
-
Daniel Stenberg authored
a re-used connection where both requests used Negotiate.
-
- Feb 25, 2008
-
-
Daniel Stenberg authored
forces it to prefer SSLv3.
-
- Feb 23, 2008
-
-
Daniel Stenberg authored
http://curl.haxx.se/bug/feature.cgi?id=1900014 that makes libcurl (built to use OpenSSL) support a full chain of certificates in a given PKCS12 certificate.
-
- Feb 22, 2008
-
-
Daniel Stenberg authored
options as the lib/Makefile.vc6 already did.
-
- Feb 21, 2008
-
-
Daniel Stenberg authored
happened if you set the connection cache size to 1 and for example failed to login to an FTP site. Bug report #1896698 (http://curl.haxx.se/bug/view.cgi?id=1896698)
-
- Feb 20, 2008
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
better control at the exact state of the connection's SSL status so that we know exactly when it has completed the SSL negotiation or not so that there won't be accidental re-uses of connections that are wrongly believed to be in SSL-completed-negotiate state.
-
Daniel Stenberg authored
such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location: following. The patch that introduced this feature was done for 7.11.0, but this code and functionality has been broken since about 7.15.4 (March 2006) with the introduction of non-blocking OpenSSL "connects". It was a hack to begin with and since it doesn't work and hasn't worked correctly for a long time and nobody has even noticed, I consider it a very suitable subject for plain removal. And so it was done.
-
- Feb 18, 2008
-
-
Daniel Stenberg authored
get a fresh one downloaded and created with 'make ca-bundle' or you can get one from here => http://curl.haxx.se/docs/caextract.html if you want a fresh new one extracted from Mozilla's recent list of ca certs. The configure option --with-ca-bundle now lets you specify what file to use as default ca bundle for your build. If not specified, the configure script will check a few known standard places for a global ca cert to use.
-
- Feb 17, 2008
-
-
Daniel Stenberg authored
connection by force when it was called before the entire request is completed, simply because we can't know if the connection really can be re-used safely at that point.
-
- Feb 15, 2008
-
-
Daniel Stenberg authored
verification is requested. Previously it would even return failure if gnutls failed to get the server cert even though no verification was asked for. - Fix my Curl_timeleft() leftover mistake in the gnutls code
-
Daniel Stenberg authored
-
Daniel Stenberg authored
http request and then you'd reuse the handle and replace the Accept: header, as then libcurl would send two Accept: headers!
-
- Feb 10, 2008
-
-
http://curl.haxx.se/bug/view.cgi?id=1888932Yang Tse authored
out and provides test program that demonstrates that libcurl might not set error description message for error CURLE_COULDNT_RESOLVE_HOST for Windows threaded name resolver builds. Fixed now.
-
- Feb 08, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1889856): When using the gnutls ssl layer, cleaning-up and reinitializing curl ends up with https requests failing with "ASN1 parser: Element was not found" errors. Obviously a regression added in 7.16.3.
-
Daniel Stenberg authored
creates a suitable ca-bundle.crt file in PEM format for use with curl. The recommended way to run it is to use 'make ca-bundle' in the build tree root.
-
- Feb 07, 2008
-
-
Daniel Stenberg authored
them all use the same (hopefully correct) logic to make it less error-prone and easier to introduce library-wide where it should be used.
-
- Feb 06, 2008
-
-
Yang Tse authored
-
- Jan 31, 2008
-
-
Daniel Stenberg authored
"HttpOnly" feature introduced by Microsoft and apparently also supported by Firefox: http://msdn2.microsoft.com/en-us/library/ms533046.aspx . HttpOnly is now supported when received from servers in HTTP headers, when written to cookie jars and when read from existing cookie jars.
-
- Jan 29, 2008
-
-
Daniel Stenberg authored
crash!
-
Daniel Stenberg authored
working on other IP-addresses or port numbers.
-
- Jan 28, 2008
-
-
Daniel Stenberg authored
-
- Jan 25, 2008
-
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=1879375) which describes how libcurl got lost in this scenario: proxy tunnel (or HTTPS over proxy), ask to do any proxy authentication and the proxy replies with an auth (like NTLM) and then closes the connection after that initial informational response. libcurl would not properly re-initialize the connection to the proxy and continue the auth negotiation like supposed. It does now however, as it will now detect if one or more authentication methods were available and asked for, and will thus retry the connection and continue from there. - I made the progress callback get called properly during proxy CONNECT.
-
- Jan 24, 2008
-
-
Daniel Stenberg authored
-
- Jan 23, 2008
-
-
Daniel Stenberg authored
did "SESS". Fixed now.
-
- Jan 21, 2008
-
-
Daniel Stenberg authored
that it is bad anyway. Starting now, removing a handle that is in used in a pipeline will break the pipeline - it'll be set back up again but still...
-
- Jan 20, 2008
-
-
Daniel Stenberg authored
-
-
- Jan 18, 2008
-
-
Daniel Stenberg authored
CONNECT over a proxy. curl_multi_fdset() didn't report back the socket properly during that state, due to a missing case in the switch in the multi_getsock() function.
-
- Jan 17, 2008
-
-
Daniel Stenberg authored
-
- Jan 16, 2008
-
-
Daniel Stenberg authored
out what valgrind to run.
-