mirror of
https://github.com/curl/curl.git
synced 2026-08-05 09:16:14 +03:00
parent
ad837e9df8
commit
72abf7c13a
49 changed files with 199 additions and 162 deletions
|
|
@ -137,13 +137,14 @@ CURL_EXTERN int curl_dbg_fclose(FILE *file, int line, const char *source);
|
|||
|
||||
#undef socket
|
||||
#define socket(domain,type,protocol)\
|
||||
curl_dbg_socket(domain, type, protocol, __LINE__, __FILE__)
|
||||
curl_dbg_socket((int)domain, type, protocol, __LINE__, __FILE__)
|
||||
#undef accept /* for those with accept as a macro */
|
||||
#define accept(sock,addr,len)\
|
||||
curl_dbg_accept(sock, addr, len, __LINE__, __FILE__)
|
||||
#ifdef HAVE_SOCKETPAIR
|
||||
#define socketpair(domain,type,protocol,socket_vector)\
|
||||
curl_dbg_socketpair(domain, type, protocol, socket_vector, __LINE__, __FILE__)
|
||||
curl_dbg_socketpair((int)domain, type, protocol, socket_vector, \
|
||||
__LINE__, __FILE__)
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_GETADDRINFO
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue