summaryrefslogtreecommitdiff
path: root/apt-pkg/tagfile.h
diff options
context:
space:
mode:
authorbubulle@debian.org <>2006-08-21 10:55:15 -0500
committerbubulle@debian.org <>2006-08-21 10:55:15 -0500
commit3784e34677882fbea8538baa1c25b0d35abf429a (patch)
tree2c4d4f7c81d6126fdce3b1c4665c7f80efb0fb74 /apt-pkg/tagfile.h
parent8fa7672020f75a9ec7d3ffcfd8c8f3aad6f159b7 (diff)
parent02b7ddb1404fa3969bceb03a5f35107884027ba6 (diff)
Merge with Michael and resolve conflicts
Diffstat (limited to 'apt-pkg/tagfile.h')
-rw-r--r--apt-pkg/tagfile.h5
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();
};