I'm using libcurl to communicate with Twitter and Identi.ca. Everything works perfectly as long as my connection isn't busy. But if I'm downloading a large file, the curl requests timeout after 5 seconds.
I've set the following options on the curl handle:
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 30);
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 60);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 15);
and they make no difference, curl_easy_perform() always returns after 5 seconds. The CURLINFO_RESPONSE_CODE and CURLINFO_HTTP_CONNECTCODE values are always both zero.
Any ideas? Are there any other timeouts I need to set, or is there any reason why the above don't take effect?
EDIT: The return value of curl_easy_perform is CURLE_OPERATION_TIMEDOUT

curl_easy_perform()? – Linus Kleen May 22 '11 at 10:18CURLOPT_NOSIGNAL,maybe this needs to be set, too? – Uwe Keim May 22 '11 at 10:37