X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/dab94dcbda14af5ba452858d0ba7d48866f3b8d6..5f4db009e50a254f1dd3edaac7b77fe31e1c5f6b:/methods/https.h diff --git a/methods/https.h b/methods/https.h index 2c33d95ee..b7adeb880 100644 --- a/methods/https.h +++ b/methods/https.h @@ -20,10 +20,12 @@ using std::cout; using std::endl; class HttpsMethod; - +class FileFd; class HttpsMethod : public pkgAcqMethod { + // minimum speed in bytes/se that triggers download timeout handling + static const int DL_MIN_SPEED = 10; virtual bool Fetch(FetchItem *); static size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp); @@ -43,6 +45,7 @@ class HttpsMethod : public pkgAcqMethod }; }; +#include URI Proxy; #endif