]> git.saurik.com Git - apt.git/blobdiff - methods/https.h
add a simple webserver for our testcases
[apt.git] / methods / https.h
index 3b57c7be6285aef55a8f0c0b431a878297e268cd..293e288e06f8d6fe1872bbcf4769ff4d2fc48ae5 100644 (file)
@@ -8,8 +8,8 @@
    ##################################################################### */
                                                                        /*}}}*/
 
-#ifndef APT_HTTP_H
-#define APT_HTTP_H
+#ifndef APT_HTTPS_H
+#define APT_HTTPS_H
 
 #include <iostream>
 #include <curl/curl.h>
@@ -41,6 +41,11 @@ class HttpsMethod : public pkgAcqMethod
       File = 0;
       curl = curl_easy_init();
    };
+
+   ~HttpsMethod()
+   {
+      curl_easy_cleanup(curl);
+   };
 };
 
 #include <apt-pkg/strutl.h>