]> git.ipfire.org Git - thirdparty/squid.git/blob - include/snmp.h
Removed mini-client.h include
[thirdparty/squid.git] / include / snmp.h
1 #ifndef _SNMP_H_
2 #define _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.10 1998/02/22 20:02:27 kostas 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 #include "mibii.h"
45 #include "snmp_extra.h"
46 #include "snmp_dump.h"
47
48 /* I didn't touch this */
49 #include "snmp_session.h"
50
51 /* The various modules */
52 #include <snmp_vars.h>
53 #include <snmp_pdu.h>
54 #include <snmp_msg.h>
55
56 /* Other functions */
57 #include <snmp_coexist.h>
58 #include <version.h>
59 #include <snmp_error.h>
60 #include <snmp_api_error.h>
61 #if 0
62 #include <mini-client.h>
63 #endif
64 /* Other stuff I didn't touch */
65 #include <snmp_impl.h>
66 #include <snmp_api.h>
67 #include <snmp_client.h>
68 #include <snmp-internal.h>
69 #include <mib.h>
70 #include <parse.h>
71 #include <snmp_compat.h>
72
73 #ifndef SQUID_H
74 #ifdef __STDC__
75 void (*snmplib_debug) (int,char *, ...);
76 #else
77 void (*snmplib_debug) (va_alist));
78 #endif
79 #endif
80 #endif /* _SNMP_H_ */