aboutsummaryrefslogtreecommitdiff
path: root/lib/hostares.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/hostares.c')
-rw-r--r--lib/hostares.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/hostares.c b/lib/hostares.c
index af02d8dc8..baaa4b0fb 100644
--- a/lib/hostares.c
+++ b/lib/hostares.c
@@ -105,17 +105,15 @@
* Returns: CURLE_OK always!
*/
-CURLcode Curl_resolv_fdset(struct connectdata *conn,
- fd_set *read_fd_set,
- fd_set *write_fd_set,
- int *max_fdp)
+int Curl_resolv_getsock(struct connectdata *conn,
+ curl_socket_t *socks,
+ int numsocks)
{
- int max = ares_fds(conn->data->state.areschannel,
- read_fd_set, write_fd_set);
- *max_fdp = max;
+ int max = ares_getsock(conn->data->state.areschannel,
+ (int *)socks, numsocks);
- return CURLE_OK;
+ return max;
}
/*