aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-01added DISTRO-DILEMMADaniel Stenberg
2005-09-01added the URLDaniel Stenberg
2005-09-01newDaniel Stenberg
2005-08-31oops, the GNU GSS patch could clobber the CPPFLAGS variable and it thusDaniel Stenberg
broke krb4 builds!
2005-08-31ocurl releaseDaniel Stenberg
2005-08-31use it as 'struct addrinfo' so perhaps it builds on mingw againDaniel Stenberg
2005-08-30quick hack to make it working again on Win32 - however we should consider to ↵Gunter Knauf
set some defaults depending on the compiler architecture we guess we are since it doesnt work well if we prefer building the msvc makefile with gmake instead of nmake because we found gmake first in path....
2005-08-29Kevin Lussier pointed out a problem with curllib.dspDaniel Stenberg
2005-08-29Use the more correct BUILDING_LIBCURL define instead of CURLLIB_EXPORTS.Daniel Stenberg
Kevin Lussier pointed this out!
2005-08-29spell-fixDaniel Stenberg
2005-08-29Igor Polyakov fixed a rather nasty problem with the threaded name resolverDaniel Stenberg
for Windows, that could lead to an Access Violation when the multi interface was used due to an issue with how the resolver thread was and was not terminated.
2005-08-29Added GNU GSS and separate sections for MIT GSS and Heimdal and added infoDaniel Stenberg
about what each single lib may be used for.
2005-08-29Simon Josefson brought GNU GSS supportDaniel Stenberg
2005-08-291.3.0 coming just upDaniel Stenberg
2005-08-29Moved the GnuTLS related TODO items from lib/TODO.gnutls to the properDaniel Stenberg
docs/TODO
2005-08-264.14 Redirects work in browser but not with curl!Daniel Stenberg
2005-08-25ok, the right term (using RFC2616 lingo) for the -X keyword is method and notDaniel Stenberg
request
2005-08-25"Added in 7.14.1" notes and some minor editsDaniel Stenberg
2005-08-25CURLINFO_COOKIELIST is added in 7.14.1Daniel Stenberg
2005-08-24Theo Borm's example, as was posted here:Daniel Stenberg
http://curl.haxx.se/mail/lib-2005-08/0163.html
2005-08-24Toby Peterson added CURLOPT_IGNORE_CONTENT_LENGTH to the library, accessibleDaniel Stenberg
from the command line tool with --ignore-content-length. This will make it easier to download files from Apache 1.x (and similar) servers that are still having problems serving files larger than 2 or 4 GB. When this option is enabled, curl will simply have to wait for the server to close the connection to signal end of transfer. I wrote test case 269 that runs a simple test that this works.
2005-08-24valgrind version 3 renames the --logfile command line option to --log-file...Daniel Stenberg
2005-08-24fixed #26, GnuTLS CA cert verificationDaniel Stenberg
2005-08-24Fixed CA cert verification using GnuTLS with the default bundle, whichDaniel Stenberg
previously failed due to GnuTLS not allowing x509 v1 CA certs by default.
2005-08-23known bug #26, pretty fatal for anyone who wants to use proper SSL and GnuTLSDaniel Stenberg
2005-08-22enabled statically linked builds.Gunter Knauf
2005-08-21well hit me, that wasn't possible, use 1:0:0 anyway...Daniel Stenberg
2005-08-21modified the version-info, we only added functionsDaniel Stenberg
2005-08-21increase version infoDaniel Stenberg
2005-08-21avoid adding a blank dir to the LD_LIBRARY_PATH when OpenSSL is found in aDaniel Stenberg
default dir
2005-08-21Alfredo Tupone provided a fix for the Windows code in get_iphlpapi_dns_info()Daniel Stenberg
when getting the DNS server etc.
2005-08-19Using CURLOPT_COOKIEFILE serveral times add more files to read from.Daniel Stenberg
2005-08-19removed the unreachable code warning from gcc debug builds, even the mostDaniel Stenberg
recent gcc versions give far too many false positives for this to be valuable
2005-08-19Norbert Novotny had problems with FTPS and he helped me work out a patchDaniel 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-19one german mirror has died while another one was added, and yet another TexasDaniel Stenberg
one!
2005-08-19Added new contributors from RELEASE-NOTES. The somewhat different sort orderDaniel Stenberg
is due to now using emacs to sort but I'm not in a mood to fix it better just now.
2005-08-19removed some inaccurate comments about the TYPE_IN_ADDR_T checkDaniel Stenberg
2005-08-19The 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-18minor Makefile fixes.Gunter Knauf
2005-08-18updated NetWare section.Gunter Knauf
2005-08-18detabifiedDaniel Stenberg
2005-08-18detabifyDaniel Stenberg
2005-08-18Harshal Pradhan's use-after-free bug with ares is now known bug #24 to beDaniel Stenberg
fixed after 7.14.1
2005-08-18it isn't strictly necessary to use it after a performDaniel Stenberg
2005-08-17removed issue 20 that was about valgrind complaints on other libs/parts, asDaniel Stenberg
we have a fancier valgrind error parser these days and it seems to work rather well
2005-08-17the SOCKS situationDaniel Stenberg
2005-08-17removed old info about curl_getdate() just simply isn't true and hasn't beenDaniel Stenberg
true since the getdate() parser code rewrite
2005-08-17remove the typecast to long from time_t, since we now store it as curl_off_tDaniel Stenberg
2005-08-17handles expiry times in cookie files that go beyond 32 bits in sizeDaniel Stenberg
2005-08-17- Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (withDaniel 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.