~ubuntu-branches/debian/experimental/apt-cacher-ng/experimental

« back to all changes in this revision

Viewing changes to include/mirror.h

  • Committer: Package Import Robot
  • Author(s): Eduard Bloch
  • Date: 2015-06-18 22:28:00 UTC
  • mfrom: (1.7.5) (29.1.59 sid)
  • Revision ID: package-import@ubuntu.com-20150618222800-81vrtqn93nma6l87
Tags: 0.8.4-1
* New upstream version
  + Fixes creation of pidfile even in foreground mode (closes: #784752)
* Added pt_BR.po update (by Adriano Rafael Gomes, closes: #785471)
* Getting rid of "ed" recommendation, new version brings a faster
  replacement (closes: #772529)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
protected:
24
24
        // FileHandler
25
 
        bool ProcessRegular(const mstring &sPath, const struct stat &);
26
 
        virtual void HandlePkgEntry(const tRemoteFileInfo &entry);
 
25
        bool ProcessRegular(const mstring &sPath, const struct stat &) override;
 
26
        virtual void HandlePkgEntry(const tRemoteFileInfo &entry) override;
27
27
        void _LoadKeyCache(const mstring & sFileName);
28
28
 
29
29
        bool m_bCalcSize=false, m_bSkipIxUpdate =false,
31
31
        off_t m_totalSize=0, m_totalHave=0;
32
32
        tStrSet m_pathFilter;
33
33
 
34
 
        const tHttpUrl *m_pDeltaSrc=NULL;
 
34
        const tHttpUrl *m_pDeltaSrc=nullptr;
35
35
        tStrPos m_repCutLen=0;
36
36
 
37
37
        bool ConfigDelta(cmstring &sPathRel);