C = curl_easy_init(); \
curl_easy_setopt(C, CURLOPT_NOPROGRESS, 1); \
curl_easy_setopt(C, CURLOPT_FOLLOWLOCATION, 1); \
+ curl_easy_setopt(C, CURLOPT_MAXREDIRS, 20); \
curl_easy_setopt(C, CURLOPT_FAILONERROR, 1); \
curl_easy_setopt(C, CURLOPT_USERAGENT, \
- "Mozilla/5.0 (X11; U; Linux i686; en-US; " \
- "rv:1.8.0.4) Gecko/20060701 Firefox/1.5.0.4"); \
+ "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060701 Firefox/1.5.0.4"); \
curl_easy_setopt(C, CURLOPT_TIMEOUT, 30); \
curl_easy_setopt(C, CURLOPT_CONNECTTIMEOUT, 10); \
}