Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-16 | Fix icc 9.0 compiler warning: external definition with no prior declaration | Yang Tse | |
2009-11-16 | Fix three var names | Yang Tse | |
2009-11-16 | Add check for assert.h header file | Yang Tse | |
2009-11-15 | getaddrinfo is fully thread safe on solaris versions which | Yang Tse | |
implement the function even when h_errno is not a macro. The h_errno macro test now only done on systems for which there is no hard coded knowledge about getaddrinfo's thread safeness. | |||
2009-11-15 | Remove files generated on previous buildconf/configure run | Yang Tse | |
2009-11-15 | Remove enable-thread / disable-thread configure option. These were only placebo | Yang Tse | |
options. The library is always built as thread safe as possible on every system. | |||
2009-11-14 | Refactor how preprocessor symbol _THREAD_SAFE definition is done. | Yang Tse | |
2009-11-13 | Assume that getaddrinfo is thread safe, unless hard coded | Yang Tse | |
knowledge says the contrary or h_errno is not defined. | |||
2009-11-13 | Related with the threadsafe capability of getaddrinfo: | Yang Tse | |
- Constantine Sapuntzakis reported that Darwin 6.0 a.k.a. MAC OS X 10.2 and newer have a threadsafe getaddrinfo. - Fix Dragonfly BSD triplet detection. - In case the hard-coded knowledge says that getaddrinfo is threadsafe, an additional check is done to verify that h_errno is also defined. If h_errno isn't defined, we finally assume that it isn't threadsafe. Jamie Lokier provided the inspiration for this extra check. | |||
2009-11-12 | AIX 5.2 and newer have threadsafe getaddrinfo. | Yang Tse | |
Add some comments to better understand what the regex's pretend to achieve. | |||
2009-11-12 | HP-UX 11.11 and later have threadsafe getaddrinfo | Yang Tse | |
2009-11-12 | Check if getaddrinfo is threadsafe when function check allows it to be used | Yang Tse | |
2009-11-11 | Renamed fpGetNetworkParams and fpSystemFunction036 to avoid namespace ↵ | Yang Tse | |
pollution with static library | |||
2009-11-11 | Add kernel32.lib | Yang Tse | |
2009-11-10 | Mention last changes | Yang Tse | |
2009-11-10 | Reinstate copyright symbol lost in previous commit | Yang Tse | |
2009-11-10 | Make some strings different in resource file for debug or release builds | Yang Tse | |
2009-11-10 | Ignore more subdirs | Yang Tse | |
2009-11-10 | Fix compiler warning: conditional expression is constant | Yang Tse | |
2009-11-10 | Sync linker and resource compiler options with Makefile.msvc | Yang Tse | |
2009-11-09 | Follow Makefile.msvc subdirectory naming scheme, and sync compiler options | Yang Tse | |
2009-11-09 | Updated MSVC makefile that allows building dynamic and static | Yang 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-09 | Test for USE_WINSOCK since it is more restrictive than WIN32 | Yang Tse | |
2009-11-09 | Make header inclusion depend on HAVE_*_H definition | Yang Tse | |
2009-11-09 | Remove unneeded preprocessor directives | Yang Tse | |
2009-11-05 | Adjust c-ares include paths for memory tracking enabled (--enable-curldebug) ↵ | Yang Tse | |
builds | |||
2009-11-04 | source files used by sample programs | Yang Tse | |
2009-11-02 | Renamed c-ares setup.h to ares_setup.h | Yang Tse | |
2009-11-02 | Adjust 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-01 | Undo old temporary change once used for testing purposes | Yang Tse | |
2009-10-31 | Mention many changes | Yang Tse | |
2009-10-31 | Mention --enable-symbol-hiding configure option | Yang Tse | |
2009-10-31 | Symbol hiding configure options renamed to the hopefully less ambiguous | Yang 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-30 | Header inclusion depending on HAVE_* symbol. | Yang Tse | |
Fix two typos. | |||
2009-10-30 | Comparison of the Initial revision of this file with ares_parse_a_reply.c | Yang 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-30 | Add CVS Id tag. | Yang Tse | |
Fix identation of some license lines. | |||
2009-10-30 | Add CVS Id tag. | Yang Tse | |
2009-10-30 | Fix comment | Yang Tse | |
2009-10-30 | In no particular order, changed/fixed all of the following in | Yang 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-29 | Add c-ares DLL resource file to distribution archive | Yang Tse | |
2009-10-29 | ignore files | Yang Tse | |
2009-10-29 | Empty subdir | Yang Tse | |
2009-10-29 | Updated MSVC 6.0 workspace and project files that allows building | Yang 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-29 | no need to check for NULL pointers before dereferencing, as the pointers | Daniel Stenberg | |
MUST be valid and they are dereferenced further down in the function unconditionally! | |||
2009-10-29 | shorten the descriptions somewhat | Daniel Stenberg | |
2009-10-29 | update to the new struct name | Daniel Stenberg | |
2009-10-29 | Jakub Hrozek added ares_parse_txt_reply() for TXT parsing | Daniel Stenberg | |
2009-10-29 | use 'ares_srv_reply' for proper name-spacing | Daniel Stenberg | |
2009-10-29 | Add reference for ares_parse_srv_reply.pdf | Yang Tse | |
2009-10-29 | Add reference for ares_parse_srv_reply docs | Yang Tse | |