X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/be20eef52da4b7f361333ea70a8d705a98ae779e..62600666d21aacea63cece3b4ec64f0ffb40168b:/methods/ftp.h?ds=sidebyside diff --git a/methods/ftp.h b/methods/ftp.h index dd92f0086..6a12475a0 100644 --- a/methods/ftp.h +++ b/methods/ftp.h @@ -11,7 +11,9 @@ #define APT_FTP_H #include +#include "aptmethod.h" +#include #include #include #include @@ -62,16 +64,17 @@ class FTPConn bool Size(const char *Path,unsigned long long &Size); bool ModTime(const char *Path, time_t &Time); bool Get(const char *Path,FileFd &To,unsigned long long Resume, - Hashes &MD5,bool &Missing); + 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;