gpt4 book ai didi

c - 指定的版本错误

转载 作者:行者123 更新时间:2023-11-30 17:18:16 25 4
gpt4 key购买 nike

我目前正在用 C 编写一个异步应用程序,但尽管网站上有示例,我仍然收到错误:

snmp_send:指定的版本错误

这是代码:

/* initialize library */
init_snmp("scanagent");
SOCK_STARTUP;
struct snmp_session *session;
struct snmp_pdu *pdu;
oid anOID[MAX_OID_LEN];
size_t anOID_len = MAX_OID_LEN;

char *peer_ip = malloc(sizeof(char) * (strlen(pool->prefix) + 5));
if(peer_ip != NULL){

/* PDU creation */
pdu = snmp_pdu_create(SNMP_MSG_GETNEXT);
if (!snmp_parse_oid(".1.3.6.1.2.1.1.1.0", anOID, &anOID_len)) {
snmp_perror(".1.3.6.1.2.1.1.1.0");
SOCK_CLEANUP;
exit(1);
}

snmp_add_null_var(pdu, anOID, anOID_len);
/* startup all hosts */
int i;
for (i = pool->start_ip; i <= pool->length; ++i) {
/* Check the next ip */

char ip[3];
sprintf(ip, ".%d", i);
strcpy(peer_ip, pool->prefix);
strcat(peer_ip, ip);

int j;
for (j = 0; j < pool->snmp_length; ++j) {
struct snmp_session sess;
snmp_info *info = pool->info[j]; /* Get the information */

char *protocol_ip = malloc(sizeof(char) * (strlen(peer_ip) + 5));
strcpy(protocol_ip, peer_ip);
strcat(protocol_ip, ":");
strcat(protocol_ip, info->port);

snmp_sess_init(&sess);
sess.peername = strdup(protocol_ip);
sess.callback = asynch_response; /* default callback */
sess.callback_magic = session;

switch(info->SNMPv) {
case 1:
set_snmp_v1(info, &sess);
break;
case 2:
set_snmp_v2(info, &sess);
break;
case 3:
set_snmp_v3(info, &sess);
break;
}

if (!(session = snmp_open(&sess))) {
snmp_perror("snmp_open");
continue;
}

if (snmp_send(session, pdu)) {
} else {
snmp_perror("snmp_send");
}

free(protocol_ip);
}
}
snmp_free_pdu(pdu);
free(peer_ip);

set_snmp_v2的代码:

void set_snmp_v2(snmp_info *info, struct snmp_session *sess){
sess->version = SNMP_VERSION_2c;
sess->community = strdup(info->community);
sess->community_len = strlen(sess->community);
}

版本 3 也出现此错误(与上面的错误类似)。对于版本 1 来说没有问题,但版本 2c 和 3 似乎会触发错误。有人可以告诉我这个错误吗?

注意:该代码的目的是扫描给定的网络并检测所有给定信息的 snmp 代理。第一个代码只是 async_request 函数内部的副本。

编辑:我忘记将我的内容添加到帖子中。

#include <stdlib.h>
#include <stdio.h>
#include <regex.h>
#include <math.h>
#include <net-snmp/net-snmp-config.h>
#include <net-snmp/net-snmp-includes.h>

最佳答案

我解决了!问题是每次我尝试打开 session 时都必须创建一个新的 pdu :

            /* Openning the session */
if (!(session = snmp_open(&sess))) {
snmp_perror("snmp_open");
continue;
}

/* PDU creation */
pdu = snmp_pdu_create(SNMP_MSG_GETNEXT);
snmp_add_null_var(pdu, anOID, anOID_len);

/* Sending the request */
if (!snmp_send(session, pdu)) {
snmp_perror("snmp_send");
snmp_free_pdu(pdu);
}

但我很困惑,因为当它工作时,我发现该请求不是异步的,而是等待超时才能发出下一个请求。

关于c - 指定的版本错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29220784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com