Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-08-21 | increase version info | Daniel Stenberg | |
2005-08-21 | avoid adding a blank dir to the LD_LIBRARY_PATH when OpenSSL is found in a | Daniel Stenberg | |
default dir | |||
2005-08-21 | Alfredo Tupone provided a fix for the Windows code in get_iphlpapi_dns_info() | Daniel Stenberg | |
when getting the DNS server etc. | |||
2005-08-19 | Using CURLOPT_COOKIEFILE serveral times add more files to read from. | Daniel Stenberg | |
2005-08-19 | removed the unreachable code warning from gcc debug builds, even the most | Daniel Stenberg | |
recent gcc versions give far too many false positives for this to be valuable | |||
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-19 | one german mirror has died while another one was added, and yet another Texas | Daniel Stenberg | |
one! | |||
2005-08-19 | Added new contributors from RELEASE-NOTES. The somewhat different sort order | Daniel Stenberg | |
is due to now using emacs to sort but I'm not in a mood to fix it better just now. | |||
2005-08-19 | removed some inaccurate comments about the TYPE_IN_ADDR_T check | Daniel Stenberg | |
2005-08-19 | The big POST to HTTPS is probably not a bug. | Daniel Stenberg | |
The CONNECT problem is now bug #25 planned to get fixed in next release. | |||
2005-08-18 | minor Makefile fixes. | Gunter Knauf | |
2005-08-18 | updated NetWare section. | Gunter Knauf | |
2005-08-18 | detabified | Daniel Stenberg | |
2005-08-18 | detabify | Daniel Stenberg | |
2005-08-18 | Harshal Pradhan's use-after-free bug with ares is now known bug #24 to be | Daniel Stenberg | |
fixed after 7.14.1 | |||
2005-08-18 | it isn't strictly necessary to use it after a perform | Daniel Stenberg | |
2005-08-17 | removed issue 20 that was about valgrind complaints on other libs/parts, as | Daniel Stenberg | |
we have a fancier valgrind error parser these days and it seems to work rather well | |||
2005-08-17 | the SOCKS situation | Daniel Stenberg | |
2005-08-17 | removed old info about curl_getdate() just simply isn't true and hasn't been | Daniel Stenberg | |
true since the getdate() parser code rewrite | |||
2005-08-17 | remove the typecast to long from time_t, since we now store it as curl_off_t | Daniel Stenberg | |
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 | added curl_mvsnprintf to the export list; I appened to the end cause of the ↵ | Gunter Knauf | |
numbering ... | |||
2005-08-16 | added curl_mvsnprintf to the export list. | Gunter Knauf | |
2005-08-16 | client side fixes | Daniel Stenberg | |
2005-08-16 | typecase the isspace() argument to int | Daniel Stenberg | |
2005-08-15 | recent changes | Daniel Stenberg | |
2005-08-15 | Added more verbose "warning" messages to the curl client for cases where it | Daniel Stenberg | |
fails to open/read files etc to help users diagnose why it doesn't do what you'd expect it to. Converted lots of old messages to use the new generic function I wrote for this purpose. | |||
2005-08-13 | James Bursa identified a libcurl HTTP bug and a good way to repeat it. If a | Daniel Stenberg | |
site responds with bad HTTP response that doesn't contain any header at all, only a response body, and the write callback returns 0 to abort the transfer, it didn't have any real effect but the write callback would be called once more anyway. | |||
2005-08-12 | added test 268 that makes curl -d @nonexisting | Daniel Stenberg | |
2005-08-12 | clarify | Daniel Stenberg | |
2005-08-12 | o curl -d @filename when 'filename' was not possible to access no longer | Daniel Stenberg | |
converts the request to a GET, but now instead makes it a POST of no data o The time condition illegal syntax warning is now inhibited if -s is used. | |||
2005-08-12 | -H needs no CRLF or similar added | Daniel Stenberg | |
2005-08-11 | removed old debug left-over infof() call | Daniel Stenberg | |
2005-08-11 | do a POST with NTLM and add two custom headers | Daniel Stenberg | |
2005-08-11 | Added comment about strtoimax() | Daniel Stenberg | |
2005-08-11 | fix for NetWare crossbuilds to display the right config.h when build on Win32. | Gunter Knauf | |
2005-08-10 | the debug callback was called with CURLINFO_TEXT with the data size one | Daniel Stenberg | |
too big | |||
2005-08-10 | minor Makefile fix. | Gunter Knauf | |
2005-08-10 | minor Makefile fix. | Gunter Knauf | |
2005-08-10 | added some more NetWare targets. | Gunter Knauf | |
2005-08-10 | some minor Makefile fixes for SSL. | Gunter Knauf | |
2005-08-10 | make ares compile again for NetWare. | Gunter Knauf | |
2005-08-10 | make ares compile again for NetWare. | Gunter Knauf | |
2005-08-10 | fixed line endings so it works again with gnu make on Win32. | Gunter Knauf | |
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-08 | mention two other bugs we should fix before release | Daniel Stenberg | |
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-08-07 | Don't prevent FTPS:// through a http proxy, as we cannot know if it works or | Daniel Stenberg | |
not! |