]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/acquire-item.h
* fix languages like pt_PT, pt_BR, zh_CN by special casing
[apt.git] / apt-pkg / acquire-item.h
index 323dff2564461a67f106055cecac868e054cbc8f..217ddb3ef14001f5d4960dacd411a9043e4fbbf4 100644 (file)
@@ -691,13 +691,15 @@ class pkgAcqMetaIndex : public pkgAcquire::Item
    /** \brief If \b true, the index's signature is currently being verified.
     */
    bool AuthPass;
+   // required to deal gracefully with problems caused by incorrect ims hits
+   bool IMSHit; 
 
    /** \brief Check that the release file is a release file for the
     *  correct distribution.
     *
     *  \return \b true if no fatal errors were encountered.
     */
-   bool VerifyVendor();
+   bool VerifyVendor(string Message);
 
    /** \brief Called when a file is finished being retrieved.
     *
@@ -878,9 +880,21 @@ class pkgAcqFile : public pkgAcquire::Item
     *
     *  \param ShortDesc A brief description of the file being
     *  downloaded.
+    *
+    *  \param DestDir The directory the file should be downloaded into.
+    *
+    *  \param DestFilename The filename+path the file is downloaded to.
+    *
+    *
+    * If DestFilename is empty, download to DestDir/<basename> if
+    * DestDir is non-empty, $CWD/<basename> otherwise.  If
+    * DestFilename is NOT empty, DestDir is ignored and DestFilename
+    * is the absolute name to which the file should be downloaded.
     */
-   pkgAcqFile(pkgAcquire *Owner,string URI,string MD5,unsigned long Size,
-                 string Desc,string ShortDesc);
+
+   pkgAcqFile(pkgAcquire *Owner, string URI, string MD5, unsigned long Size,
+             string Desc, string ShortDesc,
+             const string &DestDir="", const string &DestFilename="");
 };
 
 /** @} */