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

« back to all changes in this revision

Viewing changes to include/snmp.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2006-11-11 10:32:06 UTC
  • Revision ID: james.westby@ubuntu.com-20061111103206-f3p0r9g0vq44rp3r
Tags: upstream-3.0.PRE5
ImportĀ upstreamĀ versionĀ 3.0.PRE5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SQUID_SNMP_H
 
2
#define SQUID_SNMP_H
 
3
 
 
4
/*
 
5
 * Definitions for the Simple Network Management Protocol (RFC 1067).
 
6
 *
 
7
 */
 
8
/**********************************************************************
 
9
 *
 
10
 *           Copyright 1997 by Carnegie Mellon University
 
11
 * 
 
12
 *                       All Rights Reserved
 
13
 * 
 
14
 * Permission to use, copy, modify, and distribute this software and its
 
15
 * documentation for any purpose and without fee is hereby granted,
 
16
 * provided that the above copyright notice appear in all copies and that
 
17
 * both that copyright notice and this permission notice appear in
 
18
 * supporting documentation, and that the name of CMU not be
 
19
 * used in advertising or publicity pertaining to distribution of the
 
20
 * software without specific, written prior permission.
 
21
 * 
 
22
 * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
 
23
 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
 
24
 * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
 
25
 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
 
26
 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
 
27
 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
 
28
 * SOFTWARE.
 
29
 * 
 
30
 * $Id: snmp.h,v 1.16 2003/01/23 00:36:47 robertc Exp $
 
31
 * 
 
32
 **********************************************************************/
 
33
 
 
34
#if HAVE_SYS_TYPES_H
 
35
#include <sys/types.h>
 
36
#endif
 
37
#if HAVE_NETINET_IN_H
 
38
#include <netinet/in.h>
 
39
#endif
 
40
 
 
41
/* These come first */
 
42
#include "asn1.h"
 
43
#include "snmp_error.h"
 
44
#if 0
 
45
#include "mibii.h"
 
46
#include "snmp_extra.h"
 
47
#include "snmp_dump.h"
 
48
#endif
 
49
 
 
50
/* I didn't touch this */
 
51
#include "snmp_session.h"
 
52
 
 
53
/* The various modules */
 
54
#include "snmp_vars.h"
 
55
#include "snmp_pdu.h"
 
56
#include "snmp_msg.h"
 
57
 
 
58
/* Other functions */
 
59
#include "snmp_coexist.h"
 
60
#include "version.h"
 
61
#include "snmp_error.h"
 
62
#include "snmp_api_error.h"
 
63
/* Other stuff I didn't touch */
 
64
#include "snmp_impl.h"
 
65
#include "snmp_api.h"
 
66
#if 0
 
67
#include "snmp_client.h"
 
68
#include "mib.h"
 
69
#endif
 
70
#include "snmp-internal.h"
 
71
#include "parse.h"
 
72
#include "snmp_debug.h"
 
73
 
 
74
#endif /* SQUID_SNMP_H */