summaryrefslogtreecommitdiff
path: root/methods
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2008-05-02 12:26:17 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2008-05-02 12:26:17 -0300
commitcc615257a94918b737cb45f7e698b465e096a668 (patch)
tree3fc4edd4421eeb490ed4aa106583a2db248ac1ca /methods
parentc7f2799bd0c9a665e9ff9b2e536abb4a04570185 (diff)
Add timeout support for https.
Diffstat (limited to 'methods')
-rw-r--r--methods/https.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/methods/https.cc b/methods/https.cc
index b2bbbddb1..b0b05a47e 100644
--- a/methods/https.cc
+++ b/methods/https.cc
@@ -110,7 +110,6 @@ bool HttpsMethod::Fetch(FetchItem *Itm)
long curl_responsecode;
// TODO:
- // - http::Timeout
// - http::Pipeline-Depth
// - error checking/reporting
// - more debug options? (CURLOPT_DEBUGFUNCTION?)
@@ -169,6 +168,11 @@ bool HttpsMethod::Fetch(FetchItem *Itm)
// set header
curl_easy_setopt(curl, CURLOPT_USERAGENT,"Debian APT-CURL/1.0 ("VERSION")");
+ // set timeout
+ int timeout = _config->FindI("Acquire::http::Timeout",120);
+ curl_easy_setopt(curl, CURLOPT_TIMEOUT, timeout);
+ curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, timeout);
+
// debug
if(_config->FindB("Debug::Acquire::https", false))
curl_easy_setopt(curl, CURLOPT_VERBOSE, true);