Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2009-10-29 | External API function linkage decoration adjustment | Yang Tse | |
2009-10-29 | External API function linkage decoration adjustment | Yang Tse | |
2009-10-28 | Initial step towards the ability to reduce c-ares exported symbols | Yang 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-27 | Fix comment | Yang Tse | |
2009-10-27 | Fix spelling | Yang Tse | |
2009-10-27 | Fix Pelles C Win32 target compilation issues | Yang Tse | |
2009-10-23 | John Engelhart noticed an unreleased problem relative to a duplicate | Yang Tse | |
ARES_ECANCELLED error code value and missing error code description. | |||
2009-10-19 | Fix compiler warning: local variable may be used without having been initialized | Yang Tse | |
2009-10-19 | Use *_CHECK_PATH_SEPARATOR_REQUIRED to ensure that *_CHECK_PATH_SEPARATOR | Yang Tse | |
is only expanded and included once in the configure script. | |||
2009-10-19 | Our _AS_PATH_SEPARATOR_PREPARE override is now m4_defun'd instead of m4_define'd | Yang Tse | |
due to autoconf 2.64 m4_require'ing it in _AS_SHELL_SANITIZE indirectly through _AS_PATH_WALK. | |||
2009-10-13 | Fix compiler warning: argument is incompatible with corresponding format ↵ | Yang Tse | |
string conversion | |||
2009-10-10 | Fix potential out-of-bounds read | Yang Tse | |
2009-10-10 | Fix compiler warning: loop without body | Yang Tse | |
2009-10-09 | Fix compiler warning | Yang Tse | |
2009-10-08 | Fix compiler warning | Yang Tse | |
2009-10-08 | Fix compiler warning | Yang Tse | |
2009-10-08 | Fix compiler warning: addition result could be truncated before cast to ↵ | Yang Tse | |
bigger sized type | |||
2009-10-07 | Overhauled ares__get_hostent() | Yang Tse | |
- Fixing out of bounds memory overwrite triggered with malformed /etc/hosts file. - Improving parsing of /etc/hosts file. - Validating requested address family. - Ensuring that failures always return a NULL pointer. - Adjusting header inclusions. | |||
2009-10-06 | Fix ssize_t redefinition errors on WIN64 reported by Alexey Simak | Yang Tse | |
2009-10-05 | more files to ignore | Yang Tse | |
2009-09-29 | Check if _REENTRANT definition is required to | Yang Tse | |
make errno available as a preprocessor macro. | |||
2009-09-17 | Attempt to silence bogus compiler warning: "Potential null pointer dereference" | Yang Tse | |
2009-09-14 | ignore more files | Yang Tse | |
2009-09-07 | Suppress warnings about unused prototypes in Watt32 and Win32 programs. | Gisle Vanem | |
2009-09-07 | Update email address. | Gisle Vanem | |
2009-09-07 | Update my email address. Add ares_config.h as dependency for 'make depend'. | Gisle Vanem | |
2009-09-06 | T_SRV portability check | Yang Tse | |
2009-09-05 | changed includes to match style how we do with all other *.c files. | Gunter Knauf | |
2009-09-05 | changed u_int16_t to unsigned short because it is the only place within ares ↵ | Gunter Knauf | |
and curl where such a type would be used; also it broke many autobuilds. We should probably introduce an ares_port_t if we want to use a type here. | |||
2009-09-05 | Replace 'uint16_t' with 'u_int16_t' since the latter is used in ares.h. | Gisle Vanem | |
2009-09-05 | Added 'ares_parse_srv_reply.obj'. Added definition of 'u_int16_t'. This is I ↵ | Gisle Vanem | |
don't like; we should not depend on such non-universal types in a public header. But this is just a quick fix. | |||
2009-09-04 | - Jakub Hrozek added ares_parse_srv_reply() for SRV parsing | Daniel Stenberg | |
2009-08-27 | Support lookup of IPv4 literals in ares_gethostbyname(), even when the ↵ | Steinar H. Gunderson | |
address family is set to AF_INET6. |