aboutsummaryrefslogtreecommitdiff
path: root/lib/memdebug.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-12-18 16:13:37 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-12-18 16:13:37 +0000
commit184ad46a27dc65a82faa2cda76fe91bcca3404cf (patch)
tree34cd8bc1c63d52318f6c686f0da4f47d96712fc4 /lib/memdebug.h
parent74d35416a2ee4d0baa84e2b5daab2fc96dda5a58 (diff)
fixed accept() for memory debugging
Diffstat (limited to 'lib/memdebug.h')
-rw-r--r--lib/memdebug.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/memdebug.h b/lib/memdebug.h
index 21330a0b2..86271b5b2 100644
--- a/lib/memdebug.h
+++ b/lib/memdebug.h
@@ -9,6 +9,8 @@ void curl_memdebug(char *logname);
/* file descriptor manipulators */
int curl_socket(int domain, int type, int protocol, int, char *);
int curl_sclose(int sockfd, int, char *);
+int curl_accept(int s, struct sockaddr *addr, int *addrlen,
+ int line, char *source);
/* Set this symbol on the command-line, recompile all lib-sources */
#define strdup(ptr) curl_dostrdup(ptr, __LINE__, __FILE__)
@@ -18,6 +20,8 @@ int curl_sclose(int sockfd, int, char *);
#define socket(domain,type,protocol)\
curl_socket(domain,type,protocol,__LINE__,__FILE__)
+#define accept(sock,addr,len)\
+ curl_accept(sock,addr,len,__LINE__,__FILE__)
/* sclose is probably already defined, redefine it! */
#undef sclose