Skip to content
Snippets Groups Projects
Commit de681d3b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Made curl_accept() take a 'void *' instead of 'socklen_t *' in the 3rd

argument to also not force the casual includer to know about the socklen_t
type.
parent f33be3c3
No related branches found
No related tags found
No related merge requests found
......@@ -208,10 +208,11 @@ int curl_socket(int domain, int type, int protocol, int line,
return sockfd;
}
int curl_accept(int s, void *saddr, socklen_t *addrlen,
int curl_accept(int s, void *saddr, void *saddrlen,
int line, const char *source)
{
struct sockaddr *addr = (struct sockaddr *)saddr;
socklen_t *addrlen = (socklen_t *)saddrlen;
int sockfd=(accept)(s, addr, addrlen);
if(logfile)
fprintf(logfile, "FD %s:%d accept() = %d\n",
......
......@@ -58,7 +58,7 @@ void curl_memlimit(long limit);
/* file descriptor manipulators */
int curl_socket(int domain, int type, int protocol, int line , const char *);
int curl_sclose(int sockfd, int, const char *source);
int curl_accept(int s, void *addr, socklen_t *addrlen,
int curl_accept(int s, void *addr, void *addrlen,
int line, const char *source);
/* FILE functions */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment