- Feb 01, 2010
-
-
Daniel Stenberg authored
simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added benefit that this goes in line with my long-term wishes to get rid of the CURLM_CALL_MULTI_PERFORM all together from the public API.
-
- Jan 27, 2010
-
-
Yang Tse authored
mention asynchronous DNS lookups enhancements
-
- Jan 26, 2010
-
-
Daniel Stenberg authored
proxy that cannot be resolved when using c-ares. This matches the behaviour when not using c-ares.
-
- Jan 23, 2010
-
-
Björn Stenberg authored
-
- Jan 21, 2010
-
-
Daniel Stenberg authored
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
-
- Jan 19, 2010
-
-
Daniel Stenberg authored
HTTP Cookie: header _needs_ to be sorted on the path length in the cases where two cookies using the same name are set more than once using (overlapping) paths. Realizing this, identically named cookies must be sorted correctly. But detecting only identically named cookies and take care of them individually is harder than just to blindly and unconditionally sort all cookies based on their path lengths. All major browsers also already do this, so this makes our behavior one step closer to them in the cookie area. Test case 8 was the only one that broke due to this change and I updated it accordingly.
-
Daniel Stenberg authored
again when downloading files over FTP using ASCII and it turns out that the final size of the file is not the same as the initial size the server reported. This is very common since servers don't take the newline conversions into account.
-
- Jan 14, 2010
-
-
Kamil Dudka authored
being properly detected under certain circumstances. It had been caused by strange behavior of pkg-config when handling PKG_CONFIG_LIBDIR. pkg-config distinguishes among empty and non-existent environment variable in that case.
-
- Jan 11, 2010
-
-
Daniel Stenberg authored
transfers: curl_multi_fdset() would return -1 and not set and file descriptors several times during a transfer of a single file. It turned out to be due to two different flaws now fixed. Gil's excellent recipe helped me nail this.
-
Daniel Stenberg authored
interval even during very slow connects.
-
Daniel Stenberg authored
present in the tests/data/Makefile.am and outputs a notice message on the screen if not. Each test file has to be included in that Makefile.am to get included in release archives and forgetting to add files there is a common mistake. This is an attempt to make it harder to forget.
-
- Jan 08, 2010
-
-
Daniel Stenberg authored
ossl_connect_step3() increments an SSL session handle reference counter on each call. When sessions are re-used this reference counter may be incremented many times, but it will be decremented only once when done (by Curl_ossl_session_free()); and the internal OpenSSL data will not be freed if this reference count remains positive. When a session is re-used the reference counter should be corrected by explicitly calling SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid introducing a memory leak. (http://curl.haxx.se/bug/view.cgi?id=2926284)
-
- Jan 06, 2010
-
-
Daniel Stenberg authored
name resolves when c-ares is used for resolving.
-
Claes Jakobsson authored
-
- Jan 03, 2010
-
-
Kamil Dudka authored
-
- Jan 02, 2010
-
-
Daniel Stenberg authored
versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to control SSL/TLS for IMAP, POP3 and SMTP as well in addition to FTP. The old option names are still working but the new ones are the prefered ones (listed and documented).
-
- Jan 01, 2010
-
-
Daniel Stenberg authored
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail.
-
- Dec 30, 2009
-
-
Yang Tse authored
-
- Dec 25, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
headers work correctly even on FreeBSD systems before v8.
-
- Dec 17, 2009
-
-
Daniel Stenberg authored
available.
-
- Dec 16, 2009
-
-
Daniel Stenberg authored
was a bit too quick and broke test case 1101 with that change. The order of some of the setups is sensitive. I now changed it slightly again.
-
- Dec 14, 2009
-
-
Daniel Stenberg authored
detects and uses proxies based on the environment variables. If the proxy was given as an explicit option it worked, but due to the setup order mistake proxies would not be used fine for a few protocols when picked up from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added test case 1106 that verifies this functionality. (http://curl.haxx.se/bug/view.cgi?id=2913886)
-
- Dec 12, 2009
-
-
Daniel Stenberg authored
-
- Dec 10, 2009
-
-
Daniel Stenberg authored
on FTP errors in the transient 5xx range. Transient FTP errors are in the 4xx range. The code itself only tried on 5xx errors that occured _at login_. Now the retry code retries on all FTP transfer failures that ended with a 4xx response. (http://curl.haxx.se/bug/view.cgi?id=2911279)
-
Daniel Stenberg authored
-
Daniel Stenberg authored
accessing alredy freed memory and thus crash when using HTTPS (with OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order of cleaning things up. I fixed it. (http://curl.haxx.se/bug/view.cgi?id=2891591)
-
- Dec 07, 2009
-
-
Daniel Stenberg authored
with unknown size. Previously it was only used for posts with a known size larger than 1024 bytes.
-
- Dec 01, 2009
-
-
Daniel Stenberg authored
curl_easy_setopt with CURLOPT_HTTPHEADER, the library should set data->state.expect100header accordingly - the current code (in 7.19.7 at least) doesn't handle this properly. Martin Storsjo provided the fix!
-
- Nov 28, 2009
-
-
Yang Tse authored
- Added Diffie-Hellman parameters to several test harness certificate files in PEM format. Required by several stunnel versions used by our test harness.
-
- Nov 27, 2009
-
-
Daniel Stenberg authored
rework patch that now integrates TFTP properly into libcurl so that it can be used non-blocking with the multi interface and more. BLKSIZE also works. The --tftp-blksize option was added to allow setting the TFTP BLKSIZE from the command line.
-
- Nov 26, 2009
-
-
Daniel Stenberg authored
meter/callback during FTP command/response sequences. It turned out it was really lame before and now the progress meter SHOULD get called at least once per second.
-
- Nov 23, 2009
-
-
Yang Tse authored
finer granularity control when generating src and lib makefiles.
-
Daniel Stenberg authored
though it failed to write a very small download to disk (done in a single fwrite call). It turned out to be because fwrite() returned success, but there was insufficient error-checking for the fclose() call which tricked curl to believe things were fine.
-
- Nov 20, 2009
-
-
Daniel Stenberg authored
closed by libcurl before the SSL lib were shutdown and they may write to its socket. Detected to at least happen with OpenSSL builds.
-
Daniel Stenberg authored
CURLOPT_HTTPPROXYTUNNEL enabled over a proxy, a subsequent request using the same proxy with the tunnel option disabled would still wrongly re-use that previous connection and the outcome would only be badness.
-
- Nov 17, 2009
-
-
Daniel Stenberg authored
end up with entries that wouldn't time-out: 1. Set up a first web server that redirects (307) to a http://server:port that's down 2. Have curl connect to the first web server using curl multi After the curl_easy_cleanup call, there will be curl dns entries hanging around with in_use != 0. (http://curl.haxx.se/bug/view.cgi?id=2891591)
-
Daniel Stenberg authored
its pkg-config file. So -Wl stuff ended up in the .pc file, which is really bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)
-
- Nov 15, 2009
-
-
Kamil Dudka authored
(and in particular the list of required libraries) even if a path is given as argument to --with-ssl
-
- Nov 14, 2009
-
-
Claes Jakobsson authored
Added '--configure' option to curl-config to display original configure arguments when curl was built
-