2002-03-19 09:00:47 -05:00
|
|
|
/*****************************************************************************
|
2010-02-14 14:40:18 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-03-19 09:00:47 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This is a very simple example using the multi interface.
|
2002-03-04 05:15:44 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* somewhat unix-specific */
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2002-03-19 09:00:47 -05:00
|
|
|
/* curl stuff */
|
|
|
|
#include <curl/curl.h>
|
2002-03-04 05:15:44 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Simply download two HTTP files!
|
|
|
|
*/
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
CURL *http_handle;
|
|
|
|
CURL *http_handle2;
|
|
|
|
CURLM *multi_handle;
|
|
|
|
|
|
|
|
int still_running; /* keep number of running handles */
|
|
|
|
|
|
|
|
http_handle = curl_easy_init();
|
|
|
|
http_handle2 = curl_easy_init();
|
|
|
|
|
|
|
|
/* set options */
|
2010-10-05 09:00:19 -04:00
|
|
|
curl_easy_setopt(http_handle, CURLOPT_URL, "http://www.example.com/");
|
2002-03-04 05:15:44 -05:00
|
|
|
|
|
|
|
/* set options */
|
|
|
|
curl_easy_setopt(http_handle2, CURLOPT_URL, "http://localhost/");
|
|
|
|
|
|
|
|
/* init a multi stack */
|
|
|
|
multi_handle = curl_multi_init();
|
|
|
|
|
|
|
|
/* add the individual transfers */
|
|
|
|
curl_multi_add_handle(multi_handle, http_handle);
|
|
|
|
curl_multi_add_handle(multi_handle, http_handle2);
|
|
|
|
|
|
|
|
/* we start some action by calling perform right away */
|
2010-09-30 05:33:33 -04:00
|
|
|
curl_multi_perform(multi_handle, &still_running);
|
2002-03-04 05:15:44 -05:00
|
|
|
|
|
|
|
while(still_running) {
|
|
|
|
struct timeval timeout;
|
|
|
|
int rc; /* select() return code */
|
|
|
|
|
|
|
|
fd_set fdread;
|
|
|
|
fd_set fdwrite;
|
|
|
|
fd_set fdexcep;
|
2010-04-24 06:14:21 -04:00
|
|
|
int maxfd = -1;
|
2002-03-04 05:15:44 -05:00
|
|
|
|
2010-07-13 18:32:53 -04:00
|
|
|
long curl_timeo = -1;
|
|
|
|
|
2002-03-04 05:15:44 -05:00
|
|
|
FD_ZERO(&fdread);
|
|
|
|
FD_ZERO(&fdwrite);
|
|
|
|
FD_ZERO(&fdexcep);
|
|
|
|
|
|
|
|
/* set a suitable timeout to play around with */
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
|
2010-07-13 18:32:53 -04:00
|
|
|
curl_multi_timeout(multi_handle, &curl_timeo);
|
|
|
|
if(curl_timeo >= 0) {
|
|
|
|
timeout.tv_sec = curl_timeo / 1000;
|
|
|
|
if(timeout.tv_sec > 1)
|
|
|
|
timeout.tv_sec = 1;
|
|
|
|
else
|
|
|
|
timeout.tv_usec = (curl_timeo % 1000) * 1000;
|
|
|
|
}
|
|
|
|
|
2002-03-04 05:15:44 -05:00
|
|
|
/* get file descriptors from the transfers */
|
|
|
|
curl_multi_fdset(multi_handle, &fdread, &fdwrite, &fdexcep, &maxfd);
|
|
|
|
|
2006-10-13 10:01:19 -04:00
|
|
|
/* In a real-world program you OF COURSE check the return code of the
|
2010-04-24 06:14:21 -04:00
|
|
|
function calls. On success, the value of maxfd is guaranteed to be
|
|
|
|
greater or equal than -1. We call select(maxfd + 1, ...), specially in
|
|
|
|
case of (maxfd == -1), we call select(0, ...), which is basically equal
|
|
|
|
to sleep. */
|
2006-10-13 10:01:19 -04:00
|
|
|
|
2002-03-04 05:15:44 -05:00
|
|
|
rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
|
|
|
|
|
|
|
|
switch(rc) {
|
|
|
|
case -1:
|
|
|
|
/* select error */
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
/* timeout or readable/writable sockets */
|
2010-09-30 05:33:33 -04:00
|
|
|
curl_multi_perform(multi_handle, &still_running);
|
2002-03-04 05:15:44 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curl_multi_cleanup(multi_handle);
|
|
|
|
|
|
|
|
curl_easy_cleanup(http_handle);
|
|
|
|
curl_easy_cleanup(http_handle2);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|