diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-26 15:57:51 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-26 15:57:51 +0200 |
commit | 99c2e5aca0b8284762158b5052766a7d64bf4ffd (patch) | |
tree | e539d732337de7f8b78b00476a8eb966287b0211 /apt-pkg/tagfile.h | |
parent | 4577fda2b5f2b21f5400d10f4db71a8095f0df58 (diff) |
* suport both MMapable files and non-mmapable files
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r-- | apt-pkg/tagfile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apt-pkg/tagfile.h b/apt-pkg/tagfile.h index 5cff2681c..dd481ba51 100644 --- a/apt-pkg/tagfile.h +++ b/apt-pkg/tagfile.h @@ -74,16 +74,19 @@ class pkgTagFile char *Buffer; char *Start; char *End; + bool Done; unsigned long iOffset; unsigned long Size; + bool Fill(); + public: bool Step(pkgTagSection &Section); inline unsigned long Offset() {return iOffset;}; bool Jump(pkgTagSection &Tag,unsigned long Offset); - pkgTagFile(FileFd *F,unsigned long Size = 32*1024); + pkgTagFile(FileFd *F,unsigned long Size = 64*1024); ~pkgTagFile(); }; |