我按照以下教程创建扩展代理DLL。我遵循以下教程:http://www.codeproject.com/KB/IP/SNMP_Agent_DLL__Part1_.aspx
根据教程,我需要至少使用这些方法签名中的一个:
BOOL SNMP_FUNC_TYPE SnmpExtensionQuery(BYTE bPduType,
SnmpVarBindList *pVarBindList,
AsnInteger32 *pErrorStatus,
AsnInteger32 *pErrorIndex)
问题在于 SnmpVarBindList * pVarBindList 参数。我被要求将以下数据(例如“关于”,“名称”,“年龄”)插入到SnmpVarBindList数据类型中,然后将其传递给上面的方法......
但我不确定如何创建SnmpVarBindList数据类型列表并将以下数据插入(例如“关于”,“名称”,“年龄”)到列表中?
MIB_ENTRY g_MyMibTable[] = {
{
{OID_SIZEOF(g_unAboutOid),g_unAboutOid},
&g_szAbout,
"About",
ASN_OCTETSTRING,
SNMP_ACCESS_READ_ONLY,
&g_MyMibTable[1]
},
{
{OID_SIZEOF(g_unNameOid),g_unNameOid},
&g_szName,
"Name",
ASN_OCTETSTRING,
SNMP_ACCESS_READ_WRITE,
&g_MyMibTable[2]
},
{
{OID_SIZEOF(g_unAgeOid),g_unAgeOid},
&g_asnIntAge,
"Age",
ASN_INTEGER,
SNMP_ACCESS_READ_WRITE,
NULL
}
};
=============================================== =========================================== // struct definations供您参考:
typedef struct {
AsnObjectName name;
AsnObjectSyntax value;
} SnmpVarBind;
typedef struct {
SnmpVarBind * list;
UINT len;
} SnmpVarBindList;
非常感谢所提供的任何指导或代码示例,我是C ++的新手
此致
答案 0 :(得分:1)
这就是你需要的。
/* Définitions of vars leaves.
Terminal zero is needed
*/
UINT MIB_About[] = { 2, 1, 0 };
UINT MIB_Name[] = { 2, 2, 0 };
UINT MIB_Age[] = { 2, 3, 0 };
/* Physical (Har-coded) data of the MIB
*/
char MIB_AboutStor[] = "The about text";
char MIB_NameStor[] = "The Name text";
AsnInteger MIB_AgeStor = 20;
extern MIB_ENTRY Mib[];
extern UINT MIB_num_variables;
/* initialisation du modèle d'accès aux variables de la MIB
*/
MIB_ENTRY Mib[] = {
{ { OID_SIZEOF(MIB_About), MIB_About },
&MIB_AboutStor, ASN_RFC1213_DISPSTRING,
MIB_ACCESS_READ, MIB_leaf_func, &Mib[1] },
{ { OID_SIZEOF(MIB_Name), MIB_Name },
&MIB_NameStor, ASN_RFC1213_DISPSTRING,
MIB_ACCESS_READ, MIB_leaf_func, &Mib[2] },
{ { OID_SIZEOF(MIB_Age), MIB_Age },
&MIB_AgeStor, ASN_INTEGER,
MIB_ACCESS_READWRITE, MIB_control_func, NULL }
};
UINT MIB_num_variables = sizeof Mib / sizeof( MIB_ENTRY );
您可以在Microsoft示例中找到MIB_leaf_func
和MIB_control_func
。