]> git.saurik.com Git - apt.git/blobdiff - methods/https.h
use getCompressors() instead of getCompressorTypes() and use it everywhere
[apt.git] / methods / https.h
index 2c33d95ee10db3d6e0e1590b1e3cf7c1483639ad..b7adeb88084f32bb762796a318e8227960195178 100644 (file)
@@ -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 <apt-pkg/strutl.h>
 URI Proxy;
 
 #endif