~lifeless/ubuntu/lucid/apt/bug-22354

« back to all changes in this revision

Viewing changes to apt-pkg/acquire-item.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2007-02-06 11:38:06 UTC
  • Revision ID: james.westby@ubuntu.com-20070206113806-kjteipw5hw61lbn6
Tags: 0.6.46.4ubuntu7
* Merged the apt--mirror branch. This means that a new 'mirror' 
  method is available that will allow dynamic mirror updates.
  The sources.list entry looks something like this:
  "deb mirror://mirrors.lp.net/get_mirror feisty main restricted"

  It also supports error reporting to a configurable url for mirror
  problems/failures.
* Bump ABI version

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
   unsigned long ID;
58
58
   bool Complete;
59
59
   bool Local;
 
60
   string UsedMirror;
60
61
 
61
62
   // Number of queues we are inserted into
62
63
   unsigned int QueueCounter;
79
80
   pkgAcquire *GetOwner() {return Owner;};
80
81
   virtual bool IsTrusted() {return false;};
81
82
   
 
83
   // report mirror problems
 
84
   void ReportMirrorFailure(string FailCode);
 
85
 
82
86
   Item(pkgAcquire *Owner);
83
87
   virtual ~Item();
84
88
};