]> git.ipfire.org Git - thirdparty/squid.git/blob - include/snmp_vars.h
SourceFormat Enforcement
[thirdparty/squid.git] / include / snmp_vars.h
1 #ifndef SQUID_SNMP_VARS_H
2 #define SQUID_SNMP_VARS_H
3
4 /**********************************************************************
5 *
6 * Copyright 1997 by Carnegie Mellon University
7 *
8 * All Rights Reserved
9 *
10 * Permission to use, copy, modify, and distribute this software and its
11 * documentation for any purpose and without fee is hereby granted,
12 * provided that the above copyright notice appear in all copies and that
13 * both that copyright notice and this permission notice appear in
14 * supporting documentation, and that the name of CMU not be
15 * used in advertising or publicity pertaining to distribution of the
16 * software without specific, written prior permission.
17 *
18 * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
19 * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
20 * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
21 * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
22 * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
23 * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
24 * SOFTWARE.
25 *
26 * Author: Ryan Troll <ryan+@andrew.cmu.edu>
27 *
28 * $Id$
29 *
30 **********************************************************************/
31
32 #include "asn1.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 struct variable_list {
39 struct variable_list *next_variable; /* NULL for last variable */
40 oid *name; /* Object identifier of variable */
41 int name_length; /* number of subid's in name */
42 u_char type; /* ASN type of variable */
43 union { /* value of variable */
44 int *integer;
45 u_char *string;
46 oid *objid;
47 } val;
48 int val_len;
49 };
50
51 struct variable_list *snmp_var_new(oid *, int);
52 struct variable_list *snmp_var_new_integer(oid *, int, int, unsigned char);
53 struct variable_list *snmp_var_clone(struct variable_list *);
54 void snmp_var_free(struct variable_list *);
55
56 u_char *snmp_var_EncodeVarBind(u_char *, int *, struct variable_list *, int);
57 u_char *snmp_var_DecodeVarBind(u_char *, int *, struct variable_list **, int);
58
59 #define MAX_NAME_LEN 64 /* number of subid's in a objid */
60
61 /* RFC 1902: Structure of Management Information for SNMPv2
62 *
63 * Defined Types
64 */
65 #define SMI_INTEGER ASN_INTEGER
66 #define SMI_STRING ASN_OCTET_STR
67 #define SMI_OBJID ASN_OBJECT_ID
68 #define SMI_NULLOBJ ASN_NULL
69 #define SMI_IPADDRESS (ASN_APPLICATION | 0) /* OCTET STRING, net byte order */
70 #define SMI_COUNTER32 (ASN_APPLICATION | 1) /* INTEGER */
71 #define SMI_GAUGE32 (ASN_APPLICATION | 2) /* INTEGER */
72 #define SMI_UNSIGNED32 SMI_GAUGE32
73 #define SMI_TIMETICKS (ASN_APPLICATION | 3) /* INTEGER */
74 #define SMI_OPAQUE (ASN_APPLICATION | 4) /* OCTET STRING */
75 #define SMI_COUNTER64 (ASN_APPLICATION | 6) /* INTEGER */
76
77 /* constants for enums for the MIB nodes
78 * cachePeerAddressType (InetAddressType / ASN_INTEGER)
79 * cacheClientAddressType (InetAddressType / ASN_INTEGER)
80 * Defined Types
81 */
82
83 #ifndef INETADDRESSTYPE_ENUMS
84 #define INETADDRESSTYPE_ENUMS
85
86 #define INETADDRESSTYPE_UNKNOWN 0
87 #define INETADDRESSTYPE_IPV4 1
88 #define INETADDRESSTYPE_IPV6 2
89 #define INETADDRESSTYPE_IPV4Z 3
90 #define INETADDRESSTYPE_IPV6Z 4
91 #define INETADDRESSTYPE_DNS 16
92
93 #endif /* INETADDRESSTYPE_ENUMS */
94
95 /*
96 * RFC 1905: Protocol Operations for SNMPv2
97 *
98 * Variable binding.
99 *
100 * VarBind ::=
101 * SEQUENCE {
102 * name ObjectName
103 * CHOICE {
104 * value ObjectSyntax
105 * unSpecified NULL
106 * noSuchObject[0] NULL
107 * noSuchInstance[1] NULL
108 * endOfMibView[2] NULL
109 * }
110 * }
111 */
112 #define SMI_NOSUCHOBJECT (ASN_CONTEXT | ASN_PRIMITIVE | 0x0) /* noSuchObject[0] */
113 #define SMI_NOSUCHINSTANCE (ASN_CONTEXT | ASN_PRIMITIVE | 0x1) /* noSuchInstance[1] */
114 #define SMI_ENDOFMIBVIEW (ASN_CONTEXT | ASN_PRIMITIVE | 0x2) /* endOfMibView[2] */
115 typedef struct variable variable;
116 typedef struct variable_list variable_list;
117
118 #ifdef __cplusplus
119 }
120 #endif
121
122 #endif /* SQUID_SNMP_VARS_H */