如果你curl_easy_setopt(curl,CURLOPT_CONNECTTIMEOUT,15); 15秒后没有连接,会发生什么?
答案 0 :(得分:1)
根据this mailing list thread,the documentation for curl_easy_setopt
和curl_easy_perform
的文档,对curl_easy_perform
的调用将失败,错误代码CURLE_OPERATION_TIMEOUTED
将在{{1}中定义}}
答案 1 :(得分:0)
我还建议您传递long而不是int。 (它们的大小并不总是一样,curl_easy_setopt需要很长的时间。
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15L);