]> git.saurik.com Git - apt.git/blobdiff - methods/ftp.h
methods/connect.cc: Only use AI_IDN if defined
[apt.git] / methods / ftp.h
index 2efd28ec6e28bb0acbc0f5d46dec1fb334f40dd4..6a12475a08a952e5c206163b118c6cd55bf57b3e 100644 (file)
@@ -11,7 +11,9 @@
 #define APT_FTP_H
 
 #include <apt-pkg/strutl.h>
+#include "aptmethod.h"
 
+#include <sys/socket.h>
 #include <sys/types.h>
 #include <time.h>
 #include <string>
@@ -65,14 +67,14 @@ class FTPConn
            Hashes &MD5,bool &Missing, unsigned long long MaximumSize,
             pkgAcqMethod *Owner);
    
-   FTPConn(URI Srv);
+   explicit FTPConn(URI Srv);
    ~FTPConn();
 };
 
-class FtpMethod : public pkgAcqMethod
+class FtpMethod : public aptMethod
 {
-   virtual bool Fetch(FetchItem *Itm);
-   virtual bool Configuration(std::string Message);
+   virtual bool Fetch(FetchItem *Itm) APT_OVERRIDE;
+   virtual bool Configuration(std::string Message) APT_OVERRIDE;
    
    FTPConn *Server;