~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to src/AccessLogEntry.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2008-07-21 09:20:31 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080721092031-bj8vog645lw6487u
Tags: 3.0.STABLE8-1
* Urgency high to meet freeze deadline

* New upstream release

* debian/patches/10-mgr_active_requests
  - Added upstream patch fixing delay_pool reporting in cachemgr.cgi

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
    {
80
80
 
81
81
    public:
82
 
        CacheDetails() : size(0),
 
82
        CacheDetails() :
 
83
                requestSize(0),
 
84
                replySize(0),
83
85
                highOffset(0),
84
86
                objectSize(0),
85
87
                code (LOG_TAG_NONE),
95
97
        }
96
98
 
97
99
        struct IN_ADDR caddr;
98
 
        int64_t size;
 
100
        int64_t requestSize;
 
101
        int64_t replySize;
99
102
        int64_t highOffset;
100
103
        int64_t objectSize;
101
104
        log_type code;