mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=8015
This commit is contained in:
parent
54863421ba
commit
18aa349c00
|
@ -11776,7 +11776,11 @@ Charlie 13 Sept 2005
|
|||
|
||||
Rom 14 Sept 2005
|
||||
- Update to account management.
|
||||
- Override system defaults and specify timeouts for network transfers,
|
||||
network connections, and network speed.
|
||||
|
||||
client/
|
||||
http_curl.C
|
||||
clientgui/
|
||||
WizAttachAccountManager.cpp, .h
|
||||
WizAttachProject.cpp
|
||||
|
|
|
@ -318,6 +318,12 @@ The checking this option controls is of the identity that the server claims. The
|
|||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_NOSIGNAL, 1L);
|
||||
// bypass progress meter
|
||||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_NOPROGRESS, 1L);
|
||||
|
||||
// setup timeouts
|
||||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_TIMEOUT, 0L);
|
||||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_LOW_SPEED_LIMIT, 50L);
|
||||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_LOW_SPEED_TIME, 30L);
|
||||
curlErr = curl_easy_setopt(curlEasy, CURLOPT_CONNECTTIMEOUT, 60L);
|
||||
|
||||
// force curl to use HTTP/1.0 (which the old BOINC http libraries did)
|
||||
//curlErr = curl_easy_setopt(curlEasy, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
|
||||
|
|
Loading…
Reference in New Issue