Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-08-19 | Norbert Novotny had problems with FTPS and he helped me work out a patch | Daniel Stenberg | |
that made curl run fine in his end. The key was to make sure we do the SSL/TLS negotiation immediately after the TCP connect is done and not after a few other commands have been sent like we did previously. I don't consider this change necessary to obey the standards, I think this server is pickier than what the specs allow it to be, but I can't see how this modified libcurl code can add any problems to those who are interpreting the standards more liberally. | |||
2005-08-17 | handles expiry times in cookie files that go beyond 32 bits in size | Daniel Stenberg | |
2005-08-17 | - Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (with | Daniel Stenberg | |
CURLOPT_COOKIEFILE), add a cookie (with CURLOPT_COOKIELIST), tell it to write the result to a given cookie jar and then never actually call curl_easy_perform() - the given file(s) to read was never read but the output file was written and thus it caused a "funny" result. - While doing some tests for the bug above, I noticed that Firefox generates large numbers (for the expire time) in the cookies.txt file and libcurl didn't treat them properly. Now it does. | |||
2005-08-16 | client side fixes | Daniel Stenberg | |
2005-08-15 | recent changes | Daniel Stenberg | |
2005-08-09 | Christopher R. Palmer fixed the offsets used for date parsings when the time | Daniel Stenberg | |
zone name of a daylight savings time was used. For example, PDT vs PDS. This flaw was introduced with the new date parser (11 sep 2004 - 7.12.2). Fortunately, no web server or cookie string etc should be using such time zone names thus limiting the effect of this bug. | |||
2005-08-07 | Jon Grubbs filed bug report #1249962 which identified a problem with NTLM on a | Daniel Stenberg | |
HTTP proxy if an FTP URL was given. libcurl now properly switches to pure HTTP internally when an HTTP proxy is used, even for FTP URLs. The problem would also occur with other multi-pass auth methods. | |||
2005-08-07 | When curl is built with GnuTLS, curl-config didn't include "SSL" when | Daniel Stenberg | |
--features was used | |||
2005-07-30 | correction and added new mirror | Daniel Stenberg | |
2005-07-27 | If any of the options CURLOPT_HTTPGET, CURLOPT_POST and CURLOPT_HTTPPOST is | Daniel Stenberg | |
set to 1, CURLOPT_NOBODY will now automatically be set to 0. | |||
2005-07-27 | Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a | Daniel Stenberg | |
simple interface to extracting and setting cookies in libcurl's internal "cookie jar". See the new cookie_interface.c example code. | |||
2005-07-15 | cURLpp 0.5.1 | Daniel Stenberg | |
2005-07-13 | Diego Casorran patches to make (lib)curl build fine on Amiga again | Daniel Stenberg | |
2005-07-12 | mention the Rexx/CURL release | Daniel Stenberg | |
2005-07-12 | Adrian Schuur added trailer support in the chunked encoding stream. The | Daniel Stenberg | |
trailer is then sent to the normal header callback/stream. | |||
2005-07-05 | Gisle Vanem came up with a nice little work-around for bug #1230118. It | Daniel Stenberg | |
seems the Windows (MSVC) libc time functions may return data one hour off if TZ is not set and automatic DST adjustment is enabled. This made curl_getdate() return wrong value, and it also concerned internal cookie expirations etc. | |||
2005-07-04 | mention the strerror_r detection fix in configure | Daniel Stenberg | |
2005-07-03 | Andrew Bushnell provided enough info for me to tell that we badly needed to | Daniel Stenberg | |
fix the CONNECT authentication code with multi-pass auth methods (such as NTLM) as it didn't previously properly ignore response-bodies - in fact it stopped reading after all response headers had been received. This could lead to libcurl sending the next request and reading the body from the first request as response to the second request. (I also renamed the function, which wasn't strictly necessary but...) The best fix would to once and for all make the CONNECT code use the ordinary request sending/receiving code, treating it as any ordinary request instead of the special-purpose function we have now. It should make it better for multi-interface too. And possibly lead to less code... Added test case 265 for this. It doesn't work as a _really_ good test case since the test proxy is too stupid, but the test case helps when running the debugger to verify. | |||
2005-06-28 | new Lua binding | Daniel Stenberg | |
2005-06-22 | David Shaw fixes | Daniel Stenberg | |
2005-06-19 | possible windows memory leak fixed by Gisle | Daniel Stenberg | |
2005-06-03 | Andres Garcia's text mode fix for the 'data' part | Daniel Stenberg | |
2005-05-31 | Todd Kulesza reported a flaw in the proxy option, since a numerical IPv6 | Daniel Stenberg | |
address was not possible to use. It is now, but requires it written RFC2732-style, within brackets - which incidently is how you enter numerical IPv6 addresses in URLs. Test case 263 added to verify. | |||
2005-05-29 | recent changes | Daniel Stenberg | |
2005-05-24 | recent action | Daniel Stenberg | |
2005-05-18 | three fixes since 7.14.0 | Daniel Stenberg | |
2005-05-16 | start working on 7.14.1 | Daniel Stenberg | |
2005-05-13 | uses select() instead of poll() even on Mac OS X 10.4 | Daniel Stenberg | |
2005-05-12 | -z bad use warning and NTLM proxy auth in reconnect fix | Daniel Stenberg | |
2005-05-11 | the new HTTP headers | Daniel Stenberg | |
2005-05-09 | new counter | Daniel Stenberg | |
2005-05-09 | new mirror, added amount of contributors | Daniel Stenberg | |
2005-05-06 | one more command line option, fixed the AIX 4.3 enabled IPv6 build (it now | Daniel Stenberg | |
detects a bad Ipv6 situation and disables it automatically) | |||
2005-05-02 | Added --trace-time that when used adds a time stamp to each trace line that | Daniel Stenberg | |
--trace, --trace-ascii and --verbose output. I also made the '>' display separate each line on the linefeed so that HTTP requests etc look nicer in the -v output. | |||
2005-05-02 | two bugs, one change | Daniel Stenberg | |
2005-04-29 | more fixes | Daniel Stenberg | |
2005-04-26 | fixing | Daniel Stenberg | |
2005-04-23 | 2 days, 4 fixes | Daniel Stenberg | |
2005-04-18 | two bugfixes of today | Daniel Stenberg | |
2005-04-12 | next release will be version 7.14.0 thanks to the added GnuTLS support | Daniel Stenberg | |
2005-04-10 | HTTP 304 response with Content-Length: header | Daniel Stenberg | |
2005-04-07 | GnuTLS! | Daniel Stenberg | |
2005-04-05 | restart with a blank page again | Daniel Stenberg | |
2005-04-04 | win resolve crash, win makefile fix | Daniel Stenberg | |
2005-04-03 | fix of tonight | Daniel Stenberg | |
2005-03-30 | fix configure's SSL-detection for msys/mingw (from Andres Garcia) | Daniel Stenberg | |
2005-03-29 | Better connection keep-alive when POSTing with HTTP Digest or Negotiate. | Daniel Stenberg | |
2005-03-29 | proxy multi auth fix, --proxy-anyauth, ftp-ssl and ftp response reading fix | Daniel Stenberg | |
2005-03-18 | a Common Lisp binding | Daniel Stenberg | |
2005-03-16 | more | Daniel Stenberg | |