diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-17 07:40:02 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-17 07:40:02 +0000 |
commit | 59091fa8602f46645dc5380f9e9c1e8abd9a326b (patch) | |
tree | 04f42ebd938b9688c1e950cd148227c07f6b3d1a | |
parent | dc659ec7368bd3f31b2b1426fa106f0380f1a6d8 (diff) | |
download | curl-59091fa8602f46645dc5380f9e9c1e8abd9a326b.tar.gz |
If CURLDEBUG is set we use the libcurl internal memdebug system to track
memory leaks etc.
-rw-r--r-- | ares/ares_private.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ares/ares_private.h b/ares/ares_private.h index 1bdaf305f..123c96a0c 100644 --- a/ares/ares_private.h +++ b/ares/ares_private.h @@ -143,3 +143,11 @@ void ares__send_query(ares_channel channel, struct query *query, time_t now); void ares__close_sockets(struct server_state *server); int ares__get_hostent(FILE *fp, struct hostent **host); int ares__read_line(FILE *fp, char **buf, int *bufsize); + +#ifdef CURLDEBUG +/* This is low-level hard-hacking memory leak tracking and similar. Using the + libcurl lowlevel code from within library is ugly and only works when + c-ares is built and linked with a similarly debug-build libcurl, but we do + this anyway for convenience. */ +#include "../lib/memdebug.h" +#endif |