aboutsummaryrefslogtreecommitdiff
path: root/ares/ares_parse_txt_reply.c
AgeCommit message (Collapse)Author
2009-11-02Renamed c-ares setup.h to ares_setup.hYang Tse
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-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-29Jakub Hrozek added ares_parse_txt_reply() for TXT parsingDaniel Stenberg