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

« back to all changes in this revision

Viewing changes to include/snmp_session.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2009-09-24 14:51:06 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (20.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090924145106-38jgrzmj0d73pha5
Tags: 3.1.0.13-1
* Upload to experimental

* New upstream release
  - Fixes Follow-X-Forwarded-For support (Closes: #523943)
  - Adds IPv6 support (Closes: #432351)

* debian/rules
  - Removed obsolete configuration options
  - Enable db and radius basic authentication modules

* debian/patches/01-cf.data.debian
  - Adapted to new upstream version

* debian/patches/02-makefile-defaults
  - Adapted to new upstream version

* debian/{squid.postinst,squid.rc,README.Debian,watch}
  - Updated references to squid 3.1

* debian/squid3.install
  - Install CSS file for error pages
  - Install manual pages for new authentication modules

* debian/squid3-common.install
  - Install documented version of configuration file in /usr/share/doc/squid3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#ifndef SQUID_SNMP_SESSION_H
3
3
#define SQUID_SNMP_SESSION_H
4
4
 
 
5
#include "config.h"
 
6
 
5
7
/**********************************************************************
6
8
 *
7
9
 *           Copyright 1997 by Carnegie Mellon University
8
 
 * 
 
10
 *
9
11
 *                       All Rights Reserved
10
 
 * 
 
12
 *
11
13
 * Permission to use, copy, modify, and distribute this software and its
12
14
 * documentation for any purpose and without fee is hereby granted,
13
15
 * provided that the above copyright notice appear in all copies and that
15
17
 * supporting documentation, and that the name of CMU not be
16
18
 * used in advertising or publicity pertaining to distribution of the
17
19
 * software without specific, written prior permission.
18
 
 * 
 
20
 *
19
21
 * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
20
22
 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
21
23
 * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
23
25
 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
24
26
 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
25
27
 * SOFTWARE.
26
 
 * 
27
 
 * $Id: snmp_session.h,v 1.5 2003/01/23 00:36:48 robertc Exp $
28
 
 * 
 
28
 *
 
29
 * $Id$
 
30
 *
29
31
 **********************************************************************/
30
32
 
31
33
struct snmp_session {
32
34
    int Version;                /* SNMP Version for this session */
33
35
 
34
 
 
35
36
    u_char *community;          /* community for outgoing requests. */
36
37
    int community_len;          /* Length of community name. */
37
38
    int retries;                /* Number of retries before timeout. */