~ubuntu-branches/ubuntu/maverick/squid3/maverick-updates

« back to all changes in this revision

Viewing changes to src/helper.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2009-08-09 00:28:56 UTC
  • mfrom: (1.1.10 upstream) (18.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090809002856-wmqfcoc52yzkg2bc
Tags: 3.0.STABLE18-1
* New upstream release
  - Removed patches integrated upstream
    + 12-gcc44-fixes
    + 13-signed-unsigned-fixes
    + SQUID-2009-2

* debian/rules
  - Enable ARP ACLs (Closes: #538023)
  - Enable SNMP support (Closes: #537187)

* debian/control
  - Fix dependency for squid3-dbg on squid3 =${binary:Version}
  - Added dependency of squid3-dbg on ${misc:Depends}

* debian/squid3-common.postinst
  - Added DEBHELPER placeholder

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    dlink_list servers;
62
62
    dlink_list queue;
63
63
    const char *id_name;
64
 
    int n_to_start;
65
 
    int n_running;
66
 
    int n_active;
 
64
    int n_to_start;           ///< Configuration setting of how many helper children should be running
 
65
    int n_running;            ///< Total helper children objects currently existing
 
66
    int n_active;             ///< Count of helper children active (not shutting down)
67
67
    int ipc_type;
68
68
    unsigned int concurrency;
69
69
    time_t last_queue_warn;
86
86
    dlink_list servers;
87
87
    dlink_list queue;
88
88
    const char *id_name;
89
 
    int n_to_start;
90
 
    int n_running;
91
 
    int n_active;
 
89
    int n_to_start;           ///< Configuration setting of how many helper children should be running
 
90
    int n_running;            ///< Total helper children objects currently existing
 
91
    int n_active;             ///< Count of helper children active (not shutting down)
92
92
    int ipc_type;
93
93
    MemAllocator *datapool;
94
94
    HLPSAVAIL *IsAvailable;