]>
git.saurik.com Git - apt.git/blob - ftparchive/sources.h
4 #include <apt-pkg/tagfile.h>
9 //FIXME: do we really need to enforce a maximum size of the dsc file?
10 static const int maxSize
= 128*1024;
13 pkgTagSection Section
;
17 bool TakeDsc(const void *Data
, unsigned long Size
);
18 bool Read(std::string FileName
);
20 DscExtract() : Data(0), Length(0), IsClearSigned(false) {
21 Data
= new char[maxSize
];