3
I Use This!
Activity Not Available

Commits : Listings

Analyzed 4 months ago. based on code collected 5 months ago.
Dec 13, 2022 — Dec 13, 2023
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
next_id is an unsigned short, typecast the assign to prevent picky compilers to warn More... about 20 years ago
typecase the bitfiddling results since we get a long and we store an int, they may not be of the size size More... about 20 years ago
make ares_expand_name() take a long * instead of an int *, since we do pointer arithmetic (ptr1 - ptr2) and to do that properly on 64bit we need long More... about 20 years ago
strlen() returns a size_t, which might be larger than int on some platforms More... about 20 years ago
Dominick Meglio's fix for supporting multiple names in the Nameserver key on Windows. More... about 20 years ago
this code uses no long long, so we can have warnings about them More... about 20 years ago
check for standard headers when --enable-debug is used More... about 20 years ago
I removed the socklen_t requirement from memdebug.h, so we don't need to figure it out here anymore to build debug builds. More... about 20 years ago
The --enable-debug option really requires this to be built as part of curl. When using it, we now set the include path to better find the devel curl headers, and we check for the socklen_t type since the curl memdebug stuff needs it. More... about 20 years ago
memdebug build, 'make' no longer builds the demo tools More... about 20 years ago
'make all' also builds the demos More... about 20 years ago
include ares_private.h to make sure we get the memdebug stuff included More... about 20 years ago
If CURLDEBUG is set we use the libcurl internal memdebug system to track memory leaks etc. More... about 20 years ago
only build adig and ahost if 'make demos' is used More... about 20 years ago
don't assume we can use gcc 2.96+ options More... about 20 years ago
removed usage of unset variables (by a function that does nothing!) More... about 20 years ago
install ares_version.h as well More... about 20 years ago
Dirk Manske's fix to install ares_version.h as well More... about 20 years ago
include process.h to get the _getpid() proto More... about 20 years ago
fixed "comparison between signed and unsigned" complaints More... about 20 years ago
don't use 'sin' as variable name as the picky compiler warnings complain about it shadowing the function sin() More... about 20 years ago
fixing More... about 20 years ago
prevent a compiler warning about a macro definition More... about 20 years ago
prevent the windows version to use global symbol names added prototypes for the strcasecmp() functions More... about 20 years ago
we use the more aggressive compiler warnings More... about 20 years ago
made more pointers unsigned, as they were mostly used passed in to functions that assume them to be unsigned. Stops compiler warnings. More... about 20 years ago
typecast comparision between signed and unsigned More... about 20 years ago
try_config() takes a second parameter as const, to prevent picky compiler warnings More... about 20 years ago
takes a void *, not a char * anymore More... about 20 years ago
ares_free_string() now takes a void * instead More... about 20 years ago