mirror of
https://github.com/curl/curl.git
synced 2026-08-24 11:43:38 +03:00
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.
This commit is contained in:
parent
f33be3c313
commit
de681d3b8f
2 changed files with 3 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue