merged lp:~mvo/apt/add-missing-dsc-hashes
[ntk/apt.git] / methods / https.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/// $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
3 // $Id: http.h,v 1.12 2002/04/18 05:09:38 jgg Exp $
4 /* ######################################################################
5
6 HTTP Acquire Method - This is the HTTP aquire method for APT.
7
8 ##################################################################### */
9 /*}}}*/
10
11 #ifndef APT_HTTPS_H
12 #define APT_HTTPS_H
13
14 #include <iostream>
15 #include <curl/curl.h>
16
17 using std::cout;
18 using std::endl;
19
20 class HttpsMethod;
21 class FileFd;
22
23 class HttpsMethod : public pkgAcqMethod
24 {
25 // minimum speed in bytes/se that triggers download timeout handling
26 static const int DL_MIN_SPEED = 10;
27
28 virtual bool Fetch(FetchItem *);
29 static size_t write_data(void *buffer, size_t size, size_t nmemb, void *userp);
30 static int progress_callback(void *clientp, double dltotal, double dlnow,
31 double ultotal, double ulnow);
32 void SetupProxy();
33 CURL *curl;
34 FetchResult Res;
35
36 public:
37 FileFd *File;
38
39 HttpsMethod() : pkgAcqMethod("1.2",Pipeline | SendConfig)
40 {
41 File = 0;
42 curl = curl_easy_init();
43 };
44
45 ~HttpsMethod()
46 {
47 curl_easy_cleanup(curl);
48 };
49 };
50
51 #include <apt-pkg/strutl.h>
52 URI Proxy;
53
54 #endif