Test HAVE_GETNAMEINFO definition before using GETNAMEINFO_XXX definitions.
[platform/upstream/curl.git] / lib / memdebug.h
1 #ifdef CURLDEBUG
2 #ifndef _CURL_MEDEBUG_H
3 #define _CURL_MEDEBUG_H
4 /***************************************************************************
5  *                                  _   _ ____  _
6  *  Project                     ___| | | |  _ \| |
7  *                             / __| | | | |_) | |
8  *                            | (__| |_| |  _ <| |___
9  *                             \___|\___/|_| \_\_____|
10  *
11  * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
12  *
13  * This software is licensed as described in the file COPYING, which
14  * you should have received as part of this distribution. The terms
15  * are also available at http://curl.haxx.se/docs/copyright.html.
16  *
17  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
18  * copies of the Software, and permit persons to whom the Software is
19  * furnished to do so, under the terms of the COPYING file.
20  *
21  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22  * KIND, either express or implied.
23  *
24  * $Id$
25  ***************************************************************************/
26
27 /*
28  * CAUTION: this header is designed to work when included by the app-side
29  * as well as the library. Do not mix with library internals!
30  */
31
32 #include "setup.h"
33
34 #include <curl/curl.h>
35
36 #ifdef HAVE_SYS_TYPES_H
37 #include <sys/types.h>
38 #endif
39
40 #ifdef HAVE_SYS_SOCKET_H
41 #include <sys/socket.h>
42 #endif
43 #include <stdio.h>
44 #ifdef HAVE_MEMORY_H
45 #include <memory.h>
46 #endif
47
48 #define logfile curl_debuglogfile
49
50 extern FILE *logfile;
51
52 /* memory functions */
53 CURL_EXTERN void *curl_domalloc(size_t size, int line, const char *source);
54 CURL_EXTERN void *curl_docalloc(size_t elements, size_t size, int line, const char *source);
55 CURL_EXTERN void *curl_dorealloc(void *ptr, size_t size, int line, const char *source);
56 CURL_EXTERN void curl_dofree(void *ptr, int line, const char *source);
57 CURL_EXTERN char *curl_dostrdup(const char *str, int line, const char *source);
58 CURL_EXTERN void curl_memdebug(const char *logname);
59 CURL_EXTERN void curl_memlimit(long limit);
60
61 /* file descriptor manipulators */
62 CURL_EXTERN int curl_socket(int domain, int type, int protocol, int line , const char *);
63 CURL_EXTERN int curl_sclose(int sockfd, int, const char *source);
64 CURL_EXTERN int curl_accept(int s, void *addr, void *addrlen,
65                             int line, const char *source);
66
67 /* FILE functions */
68 CURL_EXTERN FILE *curl_fopen(const char *file, const char *mode, int line,
69                              const char *source);
70 CURL_EXTERN int curl_fclose(FILE *file, int line, const char *source);
71
72 #ifndef MEMDEBUG_NODEFINES
73
74 /* Set this symbol on the command-line, recompile all lib-sources */
75 #undef strdup
76 #define strdup(ptr) curl_dostrdup(ptr, __LINE__, __FILE__)
77 #define malloc(size) curl_domalloc(size, __LINE__, __FILE__)
78 #define calloc(nbelem,size) curl_docalloc(nbelem, size, __LINE__, __FILE__)
79 #define realloc(ptr,size) curl_dorealloc(ptr, size, __LINE__, __FILE__)
80 #define free(ptr) curl_dofree(ptr, __LINE__, __FILE__)
81
82 #define socket(domain,type,protocol)\
83  curl_socket(domain,type,protocol,__LINE__,__FILE__)
84 #undef accept /* for those with accept as a macro */
85 #define accept(sock,addr,len)\
86  curl_accept(sock,addr,len,__LINE__,__FILE__)
87
88 #if defined(getaddrinfo) && defined(__osf__)
89 /* OSF/1 and Tru64 have getaddrinfo as a define already, so we cannot define
90    our macro as for other platforms. Instead, we redefine the new name they
91    define getaddrinfo to become! */
92 #define ogetaddrinfo(host,serv,hint,res) \
93   curl_dogetaddrinfo(host,serv,hint,res,__LINE__,__FILE__)
94 #else
95 #undef getaddrinfo
96 #define getaddrinfo(host,serv,hint,res) \
97   curl_dogetaddrinfo(host,serv,hint,res,__LINE__,__FILE__)
98 #endif
99
100 #ifdef HAVE_GETNAMEINFO
101 #undef getnameinfo
102 #define getnameinfo(sa,salen,host,hostlen,serv,servlen,flags) \
103   curl_dogetnameinfo(sa,salen,host,hostlen,serv,servlen,flags, __LINE__, \
104   __FILE__)
105 #endif
106
107 #undef freeaddrinfo
108 #define freeaddrinfo(data) \
109   curl_dofreeaddrinfo(data,__LINE__,__FILE__)
110
111 /* sclose is probably already defined, redefine it! */
112 #undef sclose
113 #define sclose(sockfd) curl_sclose(sockfd,__LINE__,__FILE__)
114 /* ares-adjusted define: */
115 #undef closesocket
116 #define closesocket(sockfd) curl_sclose(sockfd,__LINE__,__FILE__)
117
118 #undef fopen
119 #define fopen(file,mode) curl_fopen(file,mode,__LINE__,__FILE__)
120 #define fclose(file) curl_fclose(file,__LINE__,__FILE__)
121
122 #endif /* MEMDEBUG_NODEFINES */
123
124 #endif /* _CURL_MEDEBUG_H */
125 #endif /* CURLDEBUG */