X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/dcd5856b11c685ca6d4629212d2978ce196ea65c..edd007cdfccd8db603d1f11acbf9f30272afb48c:/apt-pkg/acquire-method.h?ds=sidebyside diff --git a/apt-pkg/acquire-method.h b/apt-pkg/acquire-method.h index 8a680335e..675c4f844 100644 --- a/apt-pkg/acquire-method.h +++ b/apt-pkg/acquire-method.h @@ -48,7 +48,10 @@ class pkgAcqMethod bool IndexFile; bool FailIgnore; HashStringList ExpectedHashes; - unsigned long long ExpectedSize; + // a maximum size we will download, this can be the exact filesize + // for when we know it or a arbitrary limit when we don't know the + // filesize (like a InRelease file) + unsigned long long MaximumSize; }; struct FetchResult @@ -106,7 +109,7 @@ class pkgAcqMethod pkgAcqMethod(const char *Ver,unsigned long Flags = 0); virtual ~pkgAcqMethod() {}; - + void DropPrivsOrDie(); private: APT_HIDDEN void Dequeue(); };