blob: fff47fe08bba62ef4e96d5f692168e1b0775dd74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/*
* Note: this file originally auto-generated by mib2c using
* : generic-table-enums.m2c 12526 2005-07-15 22:41:16Z rstory $
*
* $Id:$
*/
#ifndef SESSIONTABLE_ENUMS_H
#define SESSIONTABLE_ENUMS_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* NOTES on enums
* ==============
*
* Value Mapping
* -------------
* If the values for your data type don't exactly match the
* possible values defined by the mib, you should map them
* below. For example, a boolean flag (1/0) is usually represented
* as a TruthValue in a MIB, which maps to the values (1/2).
*
*/
/*************************************************************************
*************************************************************************
*
* enum definitions for table sessionTable
*
*************************************************************************
*************************************************************************/
/*************************************************************
* constants for enums for the MIB node
* sesType (INTEGER / ASN_INTEGER)
*
* since a Textual Convention may be referenced more than once in a
* MIB, protect againt redefinitions of the enum values.
*/
#ifndef SESTYPE_ENUMS
#define SESTYPE_ENUMS
#define SESTYPE_PPTP 1
#define SESTYPE_L2TP 2
#define SESTYPE_PPPOE 3
#define SESTYPE_IPOE 4
#define SESTYPE_SSTP 6
#endif /* SESTYPE_ENUMS */
/*************************************************************
* constants for enums for the MIB node
* sesState (INTEGER / ASN_INTEGER)
*
* since a Textual Convention may be referenced more than once in a
* MIB, protect againt redefinitions of the enum values.
*/
#ifndef SESSTATE_ENUMS
#define SESSTATE_ENUMS
#define SESSTATE_STARTING 1
#define SESSTATE_ACTIVE 2
#define SESSTATE_FINISHING 3
#endif /* SESSTATE_ENUMS */
#ifdef __cplusplus
}
#endif
#endif /* SESSIONTABLE_ENUMS_H */
|