* (bug 3077) allow cURL to follow HTTP redirects (up to 5)

This commit is contained in:
Tony J. White = 2007-05-22 02:24:10 +00:00
parent 1a381e7022
commit 16a200d262
1 changed files with 2 additions and 0 deletions

View File

@ -298,6 +298,8 @@ void CL_cURL_BeginDownload( const char *localName, const char *remoteURL )
CL_cURL_CallbackProgress);
qcurl_easy_setopt(clc.downloadCURL, CURLOPT_PROGRESSDATA, NULL);
qcurl_easy_setopt(clc.downloadCURL, CURLOPT_FAILONERROR, 1);
qcurl_easy_setopt(clc.downloadCURL, CURLOPT_FOLLOWLOCATION, 1);
qcurl_easy_setopt(clc.downloadCURL, CURLOPT_MAXREDIRS, 5);
clc.downloadCURLM = qcurl_multi_init();
if(!clc.downloadCURLM) {
qcurl_easy_cleanup(clc.downloadCURL);