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 77 78 79
|
/* -- DO NOT EDIT --
* Generated by smidump version 0.4.3:
* smidump -f scli IANA-LANGUAGE-MIB
*
* Derived from IANA-LANGUAGE-MIB:
* The MIB module registers object identifier values for
* well-known programming and scripting languages. Every
* language registration MUST describe the format used
* when transferring scripts written in this language.
*
* Any additions or changes to the contents of this MIB
* module require Designated Expert Review as defined in
* the Guidelines for Writing IANA Considerations Section
* document. The Designated Expert will be selected by
* the IESG Area Director of the OPS Area.
*
* Note, this module does not have to register all possible
* languages since languages are identified by object
* identifier values. It is therefore possible to registered
* languages in private OID trees. The references given below are not
* normative with regard to the language version. Other
* references might be better suited to describe some newer
* versions of this language. The references are only
* provided as `a pointer into the right direction'.
*
* Revision 2000-05-10 00:00:
* Import mib-2 instead of experimental, so that
* this module compiles
*
* Revision 1999-09-09 09:00:
* Initial version as published at time of
* publication of RFC 2591.
*
* $Id: iana-language-mib.c 1788 2006-02-21 20:47:18Z schoenw $
*/
#include "iana-language-mib.h"
static guint32 const ianaLangJavaByteCode[]
= { IANA_LANGUAGE_MIB_IANALANGJAVABYTECODE };
static guint32 const ianaLangTcl[]
= { IANA_LANGUAGE_MIB_IANALANGTCL };
static guint32 const ianaLangPerl[]
= { IANA_LANGUAGE_MIB_IANALANGPERL };
static guint32 const ianaLangScheme[]
= { IANA_LANGUAGE_MIB_IANALANGSCHEME };
static guint32 const ianaLangSRSL[]
= { IANA_LANGUAGE_MIB_IANALANGSRSL };
static guint32 const ianaLangPSL[]
= { IANA_LANGUAGE_MIB_IANALANGPSL };
static guint32 const ianaLangSMSL[]
= { IANA_LANGUAGE_MIB_IANALANGSMSL };
GNetSnmpIdentity const iana_language_mib_identities[] = {
{ ianaLangJavaByteCode,
G_N_ELEMENTS(ianaLangJavaByteCode),
"ianaLangJavaByteCode" },
{ ianaLangTcl,
G_N_ELEMENTS(ianaLangTcl),
"ianaLangTcl" },
{ ianaLangPerl,
G_N_ELEMENTS(ianaLangPerl),
"ianaLangPerl" },
{ ianaLangScheme,
G_N_ELEMENTS(ianaLangScheme),
"ianaLangScheme" },
{ ianaLangSRSL,
G_N_ELEMENTS(ianaLangSRSL),
"ianaLangSRSL" },
{ ianaLangPSL,
G_N_ELEMENTS(ianaLangPSL),
"ianaLangPSL" },
{ ianaLangSMSL,
G_N_ELEMENTS(ianaLangSMSL),
"ianaLangSMSL" },
{ 0, 0, NULL }
};
|