aboutsummaryrefslogtreecommitdiff
path: root/ares
AgeCommit message (Collapse)Author
2009-11-10Mention last changesYang Tse
2009-11-10Reinstate copyright symbol lost in previous commitYang Tse
2009-11-10Make some strings different in resource file for debug or release buildsYang Tse
2009-11-10Ignore more subdirsYang Tse
2009-11-10Fix compiler warning: conditional expression is constantYang Tse
2009-11-10Sync linker and resource compiler options with Makefile.msvcYang Tse
2009-11-09Follow Makefile.msvc subdirectory naming scheme, and sync compiler optionsYang Tse
2009-11-09Updated MSVC makefile that allows building dynamic and staticYang Tse
c-ares libraries in debug and release flavours. Additionally each of the three sample programs is built against each of the four possible c-ares libraries, generating all this a total number of 12 executables and 4 libraries.
2009-11-09Test for USE_WINSOCK since it is more restrictive than WIN32Yang Tse
2009-11-09Make header inclusion depend on HAVE_*_H definitionYang Tse
2009-11-09Remove unneeded preprocessor directivesYang Tse
2009-11-05Adjust c-ares include paths for memory tracking enabled (--enable-curldebug) ↵Yang Tse
builds
2009-11-04source files used by sample programsYang Tse
2009-11-02Renamed c-ares setup.h to ares_setup.hYang Tse
2009-11-02Adjust include paths to take in account that currently:Yang Tse
c-ares with --enable-curldebug uses memdebug.h from libcurl's lib subdirectory. memdebug.h needs access to libcurl's setup.h from libcurl's lib subdirectory and also needs access to libcurl's generated curl_config.h
2009-11-01Undo old temporary change once used for testing purposesYang Tse
2009-10-31Mention many changesYang Tse
2009-10-31Mention --enable-symbol-hiding configure optionYang Tse
2009-10-31Symbol hiding configure options renamed to the hopefully less ambiguousYang Tse
--enable-symbol-hiding and --disable-symbol-hiding as well as related macro names and some internal variables used for them. Related configuration file preprocessor symbols named to CARES_SYMBOL_HIDING and CARES_SYMBOL_SCOPE_EXTERN.
2009-10-30Header inclusion depending on HAVE_* symbol.Yang Tse
Fix two typos.
2009-10-30Comparison of the Initial revision of this file with ares_parse_a_reply.cYang Tse
shows that this one is actually a modified copy of ares_parse_a_reply.c. In order to comply with ares_parse_a_reply.c's M.I.T. license, the old 1998 M.I.T. copyright notice is now also preserved in this file the same as it is done in other ares_parse_*.c files.
2009-10-30Add CVS Id tag.Yang Tse
Fix identation of some license lines.
2009-10-30Add CVS Id tag.Yang Tse
2009-10-30Fix commentYang Tse
2009-10-30In no particular order, changed/fixed all of the following inYang Tse
ares_parse_txt_reply() current version: - Fixed a couple of potential double free's. - Fixed memory leaks upon out of memory condition. - Fixed pointer arithmetic. - Setting ntxtreply to zero upon entry for all failure cases. - Changed data type to size_t for variables substr_len, str_len and the length member of ares_txt_reply struct. - Avoided a couple of memcpy() calls. - Changed i data type to unsigned int to prevent compiler warnings. - Adjusted a comment. - Use ARES_SUCCESS literal for successfull completion. - Added CVS Id tag.
2009-10-29Add c-ares DLL resource file to distribution archiveYang Tse
2009-10-29ignore filesYang Tse
2009-10-29Empty subdirYang Tse
2009-10-29Updated MSVC 6.0 workspace and project files that allows buildingYang Tse
dynamic and static c-ares libraries in debug and release flavours. Additionally each of the three sample programs is built against each of the four possible c-ares libraries, generating all this a total number of 12 executables and 4 libraries.
2009-10-29no need to check for NULL pointers before dereferencing, as the pointersDaniel Stenberg
MUST be valid and they are dereferenced further down in the function unconditionally!
2009-10-29shorten the descriptions somewhatDaniel Stenberg
2009-10-29update to the new struct nameDaniel Stenberg
2009-10-29Jakub Hrozek added ares_parse_txt_reply() for TXT parsingDaniel Stenberg
2009-10-29use 'ares_srv_reply' for proper name-spacingDaniel Stenberg
2009-10-29Add reference for ares_parse_srv_reply.pdfYang Tse
2009-10-29Add reference for ares_parse_srv_reply docsYang Tse
2009-10-29External API function linkage decoration adjustmentYang Tse
2009-10-29External API function linkage decoration adjustmentYang Tse
2009-10-28Initial step towards the ability to reduce c-ares exported symbolsYang Tse
based on the 'visibility' attribute for GNUC and __global for Sun compilers, taking also in account __declspec function decoration for Win32 and Symbian DLL's. Introducing configure options --enable-hidden-symbols and --disable-hidden-symbols following libcurl's naming.
2009-10-27Fix commentYang Tse
2009-10-27Fix spellingYang Tse
2009-10-27Fix Pelles C Win32 target compilation issuesYang Tse
2009-10-23John Engelhart noticed an unreleased problem relative to a duplicateYang Tse
ARES_ECANCELLED error code value and missing error code description.
2009-10-19Fix compiler warning: local variable may be used without having been initializedYang Tse
2009-10-19Use *_CHECK_PATH_SEPARATOR_REQUIRED to ensure that *_CHECK_PATH_SEPARATORYang Tse
is only expanded and included once in the configure script.
2009-10-19Our _AS_PATH_SEPARATOR_PREPARE override is now m4_defun'd instead of m4_define'dYang Tse
due to autoconf 2.64 m4_require'ing it in _AS_SHELL_SANITIZE indirectly through _AS_PATH_WALK.
2009-10-13Fix compiler warning: argument is incompatible with corresponding format ↵Yang Tse
string conversion
2009-10-10Fix potential out-of-bounds readYang Tse
2009-10-10Fix compiler warning: loop without bodyYang Tse
2009-10-09Fix compiler warningYang Tse