diff options
author | Michael Vogt <mvo@ubuntu.com> | 2014-10-08 08:37:01 +0200 |
---|---|---|
committer | Michael Vogt <mvo@ubuntu.com> | 2014-10-08 08:37:01 +0200 |
commit | 0c158e03ceb509a08d3d4ded79c3151237f669dd (patch) | |
tree | dc7a5cf8f15a7907d00beb75b5fa4d246ec3d36a /methods/https.h | |
parent | a943fbf21ca0b9b58b8f1492fc518679b1d7c749 (diff) | |
parent | f2b47ba290f3a178c584da83f007cf0f720baabb (diff) |
Merge remote-tracking branch 'mvo/feature/expected-size' into debian/experimental
Diffstat (limited to 'methods/https.h')
-rw-r--r-- | methods/https.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/methods/https.h b/methods/https.h index 45d1f7f63..0387cb9b5 100644 --- a/methods/https.h +++ b/methods/https.h @@ -66,11 +66,12 @@ class HttpsMethod : public pkgAcqMethod CURL *curl; FetchResult Res; HttpsServerState *Server; + unsigned long long TotalWritten; public: FileFd *File; - - HttpsMethod() : pkgAcqMethod("1.2",Pipeline | SendConfig), Server(NULL), File(NULL) + + HttpsMethod() : pkgAcqMethod("1.2",Pipeline | SendConfig), Server(NULL), TotalWritten(0), File(NULL) { curl = curl_easy_init(); }; |