我尝试与curl_multi建立2个并行连接:
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 */
curl_easy_setopt(http_handle, CURLOPT_URL, "http://216.58.208.46");
/* set options */
curl_easy_setopt(http_handle2, CURLOPT_URL, "http://213.180.204.62");
curl_easy_setopt(http_handle, CURLOPT_VERBOSE, 1L);
curl_easy_setopt(http_handle2, CURLOPT_VERBOSE, 1L);
/* 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 */
curl_multi_perform(multi_handle, &still_running);
while(still_running);
curl_multi_cleanup(multi_handle);
curl_easy_cleanup(http_handle);
curl_easy_cleanup(http_handle2);
return 0;
并获取控制台输出:
如果我使用curl_easy_perform但是我没有使用curl_multi_perform,那么一切都运行得很好所以libcurl中有错误还是我做错了什么?我的libcurl版本是7.37.1
答案 0 :(得分:2)
您似乎误解了curl_multi_perform的工作原理。它只进行一小部分转移然后返回,你需要继续调用它直到完成所有转移。 (不是在繁忙的循环中,你也应该等到"动作"再次打电话之前。)
显示使用多接口完成的两次并行传输的示例代码是curl网站上的multi-double示例。
在DNS缓存中找不到的文本只是垃圾,在将来的版本中被删除,并且"重建"文本只是告诉您libcurl如何自动修复URL,并且它将使用该固定版本。 "尝试"部分是libcurl开始连接到主机,但由于你再也没有打电话,它无法完成它的工作!