#
09bbca2f |
| 29-Sep-2008 |
Daniel Stenberg |
credit Maxim Ivanov
|
#
0a305eb7 |
| 29-Sep-2008 |
Daniel Stenberg |
- Bug #2107803 (http://curl.haxx.se/bug/view.cgi?id=2107803) "no CURLINFO_REDIRECT_URL in multi mode" also contained a patch that fixed the problem.
|
#
9e9f70a6 |
| 25-Sep-2008 |
Daniel Stenberg |
give proper credit!
|
#
1b9d311b |
| 25-Sep-2008 |
Daniel Stenberg |
- Fixed the HTTP Digest auth code to not behave badly when getting a blank realm with realm="". http://curl.haxx.se/bug/view.cgi?id=2126435
|
#
d369a2b7 |
| 23-Sep-2008 |
Daniel Stenberg |
- Introducing Jamie Lokier's function for date to epoch conversion used in the date parser function. This makes our function less dependent on system- provided functions and instead we do
- Introducing Jamie Lokier's function for date to epoch conversion used in the date parser function. This makes our function less dependent on system- provided functions and instead we do all the magic ourselves. We also no longer depend on the TZ environment variable.
show more ...
|
#
23e5402b |
| 23-Sep-2008 |
Daniel Stenberg |
- Rob Crittenden brought a patch to "add some locking for thread-safety to NSS implementation".
|
#
391e8afd |
| 22-Sep-2008 |
Daniel Stenberg |
- Made the SOCKS code use the new Curl_read_plain() function to fix the bug Markus Moeller reported: http://curl.haxx.se/mail/archive-2008-09/0016.html - recv() errors other than those
- Made the SOCKS code use the new Curl_read_plain() function to fix the bug Markus Moeller reported: http://curl.haxx.se/mail/archive-2008-09/0016.html - recv() errors other than those equal to EAGAIN now cause proper CURLE_RECV_ERROR to get returned. This made test case 160 fail so I've now disabled it until we can figure out another way to exercise that logic.
show more ...
|
#
c4a69486 |
| 22-Sep-2008 |
Daniel Stenberg |
- Michael Goffioul filed bug report #2107377 "Problem with mutli + GnuTLS + proxy" (http://curl.haxx.se/bug/view.cgi?id=2107377) that showed how a multi interface using program didn't wor
- Michael Goffioul filed bug report #2107377 "Problem with mutli + GnuTLS + proxy" (http://curl.haxx.se/bug/view.cgi?id=2107377) that showed how a multi interface using program didn't work when built with GnuTLS and a CONNECT request was done over a proxy (basically test 502 over a proxy to a HTTPS site). It turned out the ssl connect function would get called twice which caused the second call to fail.
show more ...
|
#
6abbbaad |
| 20-Sep-2008 |
Yang Tse |
fix regression in configure script which affected OpenSSL builds on MSYS
|
#
f7cce151 |
| 09-Sep-2008 |
Dan Fandrich |
Mike Revi discovered some swapped speed switches documented in the curl man page.
|
#
2816902f |
| 08-Sep-2008 |
Daniel Stenberg |
Dmitry Kurochkin fixed pipelining over proxy using the multi interface
|
#
f72a26d3 |
| 08-Sep-2008 |
Daniel Stenberg |
- Stefan Krause pointed out that libcurl would wrongly send away cookies to sites in cases where the cookie clearly has a very old expiry date. The condition was simply that libcurl's dat
- Stefan Krause pointed out that libcurl would wrongly send away cookies to sites in cases where the cookie clearly has a very old expiry date. The condition was simply that libcurl's date parser would fail to convert the date and it would then count as a (timed-based) match. Starting now, a missed date due to an unsupported date format or date range will now cause the cookie to not match.
show more ...
|
#
91ff9380 |
| 05-Sep-2008 |
Dan Fandrich |
Improved the logic the decides whether to use HTTP 1.1 features or not in a request. Detect cases where an upload must be sent chunked and the server supports only HTTP 1.0 and retur
Improved the logic the decides whether to use HTTP 1.1 features or not in a request. Detect cases where an upload must be sent chunked and the server supports only HTTP 1.0 and return CURLE_UPLOAD_FAILED.
show more ...
|
#
18110b51 |
| 05-Sep-2008 |
Daniel Stenberg |
- Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames CURLOPT_POST301 (but adds a define for backwards compatibility for you who don't define CURL_NO_OLDIES). This option allow
- Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames CURLOPT_POST301 (but adds a define for backwards compatibility for you who don't define CURL_NO_OLDIES). This option allows you to now also change the libcurl behavior for a HTTP response 302 after a POST to not use GET in the subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the patch somewhat before commit. The curl tool got a matching --post302 option. Test case 1076 was added to verify this.
show more ...
|
#
4c976856 |
| 05-Sep-2008 |
Daniel Stenberg |
- Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of
- Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS or FTPS), libcurl will gather lots of server certificate info and that info can then get extracted by a client after the request has completed with curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing helped me test and smoothen out this feature. Unfortunately, this feature currently only works with libcurl built to use OpenSSL. This feature was sponsored by networking4all.com - thanks!
show more ...
|
#
873e734c |
| 05-Sep-2008 |
Daniel Stenberg |
- Dmitriy Sergeyev pointed out that curl_easy_pause() didn't unpause properly during certain conditions. I also changed this code to use realloc() based on Daniel Fandrich's suggestion.
|
#
29f7f468 |
| 05-Sep-2008 |
Yang Tse |
sync with reality
|
#
bbc002a5 |
| 02-Sep-2008 |
Daniel Stenberg |
- Keith Mok added supported_protocols and supported_features to the pkg-config file for libcurl, and while doing that fix he unified with curl-config.in how the supported protocols and fe
- Keith Mok added supported_protocols and supported_features to the pkg-config file for libcurl, and while doing that fix he unified with curl-config.in how the supported protocols and features are extracted and used, so both those tools should now always be synced.
show more ...
|
#
91d7a6f8 |
| 01-Sep-2008 |
Daniel Stenberg |
an impressive 672 contributors (counter after the 7.19.0 release)
|
#
238db140 |
| 01-Sep-2008 |
Daniel Stenberg |
clear the way for 7.19.1 work!
|
Revision tags: curl-7_19_0 |
|
#
6ebc2b25 |
| 01-Sep-2008 |
Daniel Stenberg |
the web mirror system is dropped
|
#
558f0340 |
| 01-Sep-2008 |
Daniel Stenberg |
mention the curl_off_t changes first
|
#
c67a99ff |
| 29-Aug-2008 |
Daniel Stenberg |
- When libcurl was doing a HTTP POST and the server would respond with "Connection: close" and actually close the connection after the response-body, libcurl could still have outstanding
- When libcurl was doing a HTTP POST and the server would respond with "Connection: close" and actually close the connection after the response-body, libcurl could still have outstanding data to send and it would not properly notice this and stop sending. This caused weirdness and sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222 Note that there are still reasons to consider libcurl's behavior when getting a >= 400 response code while sending data, as Craig Perras' note "http upload: how to stop on error" specifies: http://curl.haxx.se/mail/archive-2008-08/0138.html
show more ...
|
#
099b62f1 |
| 28-Aug-2008 |
Daniel Stenberg |
- Dengminwen reported that libcurl would lock a (cookie) share twice (without an unlock in between) for a certain case and that in fact works when using regular windows mutexes but not wi
- Dengminwen reported that libcurl would lock a (cookie) share twice (without an unlock in between) for a certain case and that in fact works when using regular windows mutexes but not with pthreads'! Locks should of course not get locked again so this is now fixed. http://curl.haxx.se/mail/lib-2008-08/0422.html
show more ...
|
#
8ce78ca4 |
| 28-Aug-2008 |
Dan Fandrich |
Fixed test case 1065 by changing the handling of CURLOPT_UPLOAD to set the HTTP method to GET (or HEAD) when given a value of 0.
|