]>
git.saurik.com Git - apt.git/blob - methods/https.h
74b86a24f8016c72ce4e00b87cff8003b3e62b2a
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 /* ######################################################################
6 HTTP Acquire Method - This is the HTTP acquire method for APT.
8 ##################################################################### */
14 #include <curl/curl.h>
29 class HttpsServerState
: public ServerState
34 virtual bool ReadHeaderLines(std::string
&/*Data*/) APT_OVERRIDE
{ return false; }
35 virtual bool LoadNextResponse(bool const /*ToFile*/, FileFd
* const /*File*/) APT_OVERRIDE
{ return false; }
38 virtual bool WriteResponse(std::string
const &/*Data*/) APT_OVERRIDE
{ return false; }
40 /** \brief Transfer the data from the socket */
41 virtual bool RunData(FileFd
* const /*File*/) APT_OVERRIDE
{ return false; }
43 virtual bool Open() APT_OVERRIDE
{ return false; }
44 virtual bool IsOpen() APT_OVERRIDE
{ return false; }
45 virtual bool Close() APT_OVERRIDE
{ return false; }
46 virtual bool InitHashes(HashStringList
const &ExpectedHashes
) APT_OVERRIDE
;
47 virtual Hashes
* GetHashes() APT_OVERRIDE
;
48 virtual bool Die(FileFd
&/*File*/) APT_OVERRIDE
{ return false; }
49 virtual bool Flush(FileFd
* const /*File*/) APT_OVERRIDE
{ return false; }
50 virtual bool Go(bool /*ToFile*/, FileFd
* const /*File*/) APT_OVERRIDE
{ return false; }
52 HttpsServerState(URI Srv
, HttpsMethod
*Owner
);
53 virtual ~HttpsServerState() {Close();};
56 class HttpsMethod
: public ServerMethod
58 // minimum speed in bytes/se that triggers download timeout handling
59 static const int DL_MIN_SPEED
= 10;
61 virtual bool Fetch(FetchItem
*) APT_OVERRIDE
;
63 static size_t parse_header(void *buffer
, size_t size
, size_t nmemb
, void *userp
);
64 static size_t write_data(void *buffer
, size_t size
, size_t nmemb
, void *userp
);
65 static int progress_callback(void *clientp
, double dltotal
, double dlnow
,
66 double ultotal
, double ulnow
);
70 // Used by ServerMethods unused by https
71 virtual void SendReq(FetchItem
*) APT_OVERRIDE
{ exit(42); }
72 virtual void RotateDNS() APT_OVERRIDE
{ exit(42); }
76 virtual bool Configuration(std::string Message
) APT_OVERRIDE
;
77 virtual std::unique_ptr
<ServerState
> CreateServerState(URI
const &uri
) APT_OVERRIDE
;
78 using pkgAcqMethod::FetchResult
;
79 using pkgAcqMethod::FetchItem
;
81 HttpsMethod() : ServerMethod("https","1.2",Pipeline
| SendConfig
)
83 curl_global_init(CURL_GLOBAL_SSL
);
84 curl
= curl_easy_init();
89 curl_easy_cleanup(curl
);
93 #include <apt-pkg/strutl.h>