diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-01-23 17:19:20 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-01-23 17:19:20 +0200 |
commit | e04c66cdb8ad03df18f8299ad1431497a7917697 (patch) | |
tree | 69eed9d70b93559910afc0e6be452f2c67c6c34a /src | |
parent | 1d4ef0558e20984b572f35941e0b2f0650b5e399 (diff) | |
download | plus-e04c66cdb8ad03df18f8299ad1431497a7917697.tar.gz plus-e04c66cdb8ad03df18f8299ad1431497a7917697.tar.bz2 plus-e04c66cdb8ad03df18f8299ad1431497a7917697.tar.xz plus-e04c66cdb8ad03df18f8299ad1431497a7917697.zip |
Change online list time out from 10 to 30 seconds.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/whoisonline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/whoisonline.cpp b/src/gui/whoisonline.cpp index 84485b995..f64bf383e 100644 --- a/src/gui/whoisonline.cpp +++ b/src/gui/whoisonline.cpp @@ -376,7 +376,7 @@ int WhoIsOnline::downloadThread(void *ptr) curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, ptr); curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1); curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 7); - curl_easy_setopt(curl, CURLOPT_TIMEOUT, 10); + curl_easy_setopt(curl, CURLOPT_TIMEOUT, 30); struct curl_slist *pHeaders = 0; // Make sure the resources2.txt and news.txt aren't cached, |