summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-27Preserve empty line following last targetcares-1_7_0Yang Tse
2009-11-26Log info for start up failures.Yang Tse
2009-11-26 - Extended and fixed the change I did on Dec 11 for the the progressDaniel Stenberg
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.
2009-11-26Only attempt to clear the server-logs lock when previously set by this same ↵Yang Tse
server.
2009-11-26signal handling to cleanup on SIGINT and SIGTERMYang Tse
2009-11-26- Larry Lansing fixed ares_parse_srv_reply to properly parse repliesYang Tse
which might contain non-SRV answers, skipping over potential non-SRV ones such as CNAMEs.
2009-11-24When using icc, compile with -fpic and link with intel dynamic libraries.Yang Tse
2009-11-24clarify what a modern version of libcurl meansDaniel Stenberg
2009-11-24Added 'currently' in italics to insist on transient situation.Yang Tse
2009-11-24Fix languageYang Tse
2009-11-24refreshedDaniel Stenberg
2009-11-23- David Byron modified Makefile.dist vc8 and vc9 targets in order to allowYang Tse
finer granularity control when generating src and lib makefiles.
2009-11-23Enhance some debug messages for initialization failures.Yang Tse
Fix compiler warning: conditional expression is constant.
2009-11-23- Bjorn Augustsson reported a bug which made curl not report any problems evenDaniel Stenberg
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.
2009-11-23Daniel wants upcoming release to be 1.7.0Yang Tse
2009-11-23Mention last changesYang Tse
2009-11-23- Removed from external interface preprocessor symbol definition forYang Tse
CARES_HAVE_ARES_FREE_DATA. Current functionality of ares_free_data() makes it unnecessary.
2009-11-23Added README.msvcYang Tse
2009-11-23Changed c-ares naming conventions when using MSVC as described in README.msvcYang Tse
2009-11-23fixed CURLOPT_TFTP_BLKSIZE typoDaniel Stenberg
2009-11-23- Mention other recent changesYang Tse
2009-11-23- Jakub Hrozek renamed addrttl and addr6ttl structs to ares_addrttl andYang Tse
ares_addr6ttl in order to prevent name space pollution, along with necessary changes to code base and man pages.This change does not break ABI, there is no need to recompile existing applications. But existing applications using these structs with the old name will need source code adjustments when recompiled using c-ares 1.6.1.
2009-11-23- Jakub Hrozek fixed more function prototypes in man pages to sync themYang Tse
with the ones declared in ares.h
2009-11-22Make configure remove the curlbuild.h file included in distribution tarballsYang Tse
for use by non-configure systems. As intended, configure would overwrite the distributed one when doing in-tree builds. But VPATH builds would end having two curlbuild.h files, one in the source tree and another in the build tree.
2009-11-22Make configure remove the ares_build.h file included in distribution tarballs.Yang Tse
2009-11-22Fix macro redefinition.Yang Tse
2009-11-22Fix name space pollution.Yang Tse
2009-11-22Allow using different extra import libraries for debug and release builds.Yang Tse
2009-11-21Add manifest stuff to msvc makefileYang Tse
2009-11-20- Constantine Sapuntzakis identified a write after close, as the sockets wereDaniel Stenberg
closed by libcurl before the SSL lib were shutdown and they may write to its socket. Detected to at least happen with OpenSSL builds.
2009-11-20Sync man page with realityYang Tse
2009-11-20Add missing external API decoration for ares_set_socket_callback()Yang Tse
2009-11-20- Jad Chamcham pointed out a bug with connection re-use. If a connection hadDaniel Stenberg
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.
2009-11-20Add ares_free_data() man page.Yang Tse
2009-11-20- Provide in external interface preprocessor symbol definitions forYang Tse
CARES_HAVE_ARES_FREE_DATA as an indication of function availability.
2009-11-20Remove typecastYang Tse
2009-11-20Fix commentYang Tse
2009-11-20Add ares_data.c and ares_data.hYang Tse
2009-11-20Jakub Hrozek modified ares_parse_srv_reply() and ares_parse_txt_reply() APIYang Tse
to return a linked lists of results. These were also modified to internally use the ares_data memory struct and as such its result must be free'ed with ares_free_data().
2009-11-20Initial support for the generic ares_free_data() function that will allowYang Tse
applications to free memory allocated and returned by some c-ares funtions.
2009-11-19Explicit initialization of all FTP struct members in ftp_init()Yang Tse
2009-11-18Fix compiler warning: ISO C90 forbids mixed declarations and codeYang Tse
2009-11-18Make memory tracking system intolerant with zero sized malloc(),Yang Tse
calloc() and realloc() function calls.
2009-11-18Make usage of calloc()'s arguments consistent with rest of code baseYang Tse
2009-11-18workaround icc 9.1 optimizer issueYang Tse
2009-11-17- Constantine Sapuntzakis provided another fix for the DNS cache that couldDaniel Stenberg
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)
2009-11-17- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure intoDaniel Stenberg
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)
2009-11-16Add icc fvisibility bug testYang Tse
2009-11-16Fix icc 9.0 compiler warning: external definition with no prior declarationYang Tse
2009-11-16Update serial numberYang Tse