~ubuntu-branches/ubuntu/breezy/apt/breezy

« back to all changes in this revision

Viewing changes to ftparchive/multicompress.h

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2005-03-07 20:08:33 UTC
  • Revision ID: james.westby@ubuntu.com-20050307200833-0lxdgg2cb4oculdv
Tags: 0.6.35
* Merge apt--mvo--0 (incorporates 0.6.34ubuntu1):
  - Implement MaxSize and MaxAge in apt.cron.daily, to prevent the cache
    from growing too large (Ubuntu #6761)
  - some comments about the pkgAcqMetaSig::Custom600Headers() added
  - use gpg --with-colons
  - commented the ftp no_proxy unseting in methods/ftp.cc
  - added support for "Acquire::gpgv::options" in methods/gpgv.cc
* Merge bubulle@debian.org--2005/apt--main--0
  - Make capitalization more consistent
  - Un-fuzzy translations resulting from capitalization changes
  - Italian translation update

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
   mode_t Permissions;
56
56
   static const CompType Compressors[];
57
57
 
58
 
   bool OpenCompress(const CompType *Prog,int &Pid,int FileFd,
 
58
   bool OpenCompress(const CompType *Prog,pid_t &Pid,int FileFd,
59
59
                     int &OutFd,bool Comp);
60
60
   bool Child(int Fd);
61
61
   bool Start();
68
68
   unsigned long UpdateMTime;
69
69
   
70
70
   bool Finalize(unsigned long &OutSize);
71
 
   bool OpenOld(int &Fd,int &Proc);
72
 
   bool CloseOld(int Fd,int Proc);
 
71
   bool OpenOld(int &Fd,pid_t &Proc);
 
72
   bool CloseOld(int Fd,pid_t Proc);
73
73
   static bool GetStat(string Output,string Compress,struct stat &St);
74
74
   
75
75
   MultiCompress(string Output,string Compress,mode_t Permissions,