Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | - Gabriel Kuri reported a problem with CURLINFO_CONTENT_LENGTH_DOWNLOAD if the | Daniel Stenberg | |
download was 0 bytes, as libcurl would then return the size as unknown (-1) and not 0. I wrote a fix and test case 566 to verify it. | |||
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 | Added test case 566 in an attempt to repeat bug 2884561 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2884561) but it seems to work for me... | |||
2009-10-30 | - Liza Alenchery mentioned a problem with re-used SCP connection when a bad | Daniel Stenberg | |
auth is used, as it caused a crash. I failed to repeat the issue, but still made a change that now forces the TCP connection used for a freed SCP session to get closed and not be re-used. | |||
2009-10-30 | - "Tom" posted a bug report that mentioned how libcurl did wrong when doing a | Daniel Stenberg | |
POST using a read callback, with Digest authentication and "Transfer-Encoding: chunked" enforced. I would then cause the first request to be wrongly sent and then basically hang until the server closed the connection. I fixed the problem and added test case 565 to verify it. | |||
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 | Fix compiler warning: control reaches end of non-void function | Yang Tse | |
2009-10-29 | Take in account c-ares 1.6.1 will use __declspec function decoration | Yang Tse | |
for Win32 and Symbian unless CARES_STATICLIB is defined to use static library linkage. | |||
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 | Since the NSS lib closes the socket the memory tracking system wrongly gets a | Daniel Stenberg | |
false positive on a leaked socket, so this introduces a way to tell the system that the socket is indeed closed without explicitly closing it! | |||
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-28 | libssh2 detection changes mentioned in ↵ | Yang Tse | |
http://curl.haxx.se/mail/lib-2009-10/0343.html | |||
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-26 | grrr, removed the conflict markers | Daniel Stenberg | |
2009-10-26 | spell fix by Michael Wood | Daniel Stenberg | |
2009-10-25 | - Dima Barsky made the curl cookie parser accept cookies even with blank or | Daniel Stenberg | |
unparsable expiry dates and then treat them as session cookies - previously libcurl would reject cookies with a date format it couldn't parse. Research shows that the major browser treat such cookies as session cookies. I modified test 8 and 31 to verify this. | |||
2009-10-24 | Mention that Android works | Dan Fandrich | |
2009-10-24 | Fabian Keil's suggested wording | Daniel Stenberg | |
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-23 | OS400 install: Duplicate H include file to file CURL to support more include ↵ | Patrick Monnerat | |
path forms. | |||
2009-10-22 | update the company sponsors part, as one company is no longer sponsoring | Daniel Stenberg | |
and another is sponsoring more | |||
2009-10-21 | Update MSVC 6 caveats section | Yang Tse | |
2009-10-21 | Update memory tracking/debugging reference | Yang Tse | |
2009-10-21 | - Attempt to use pkg-config for finding out libssh2 installation details | Daniel Stenberg | |
during configure. | |||
2009-10-21 | mention bug 2848436 in regard to the TFTP problems | Daniel Stenberg | |
2009-10-21 | s/koresh/Johan van Selst/ | Daniel Stenberg | |