If you curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15); and 15 seconds passes and no connection is made, what will happen?
If you curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 15); and 15 seconds passes and no connection is made,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
According to this mailing list thread, the documentation for
curl_easy_setoptand the documentation forcurl_easy_perform, the call tocurl_easy_performwill fail with error codeCURLE_OPERATION_TIMEOUTEDas defined in<curl/curl.h>.