gpt4 book ai didi

c++ - 如何使用 c-ares 将 IP 解析为主机?

转载 作者:IT王子 更新时间:2023-10-29 00:24:56 28 4
gpt4 key购买 nike

这是我到目前为止所做的。它可以编译,但是当我尝试运行它时会出现段错误。

#include <iostream>
#include <netdb.h>
#include <arpa/inet.h>
#include <ares.h>

void dns_callback (void* arg, int status, int timeouts, struct hostent* host)
{
std::cout << host->h_name << "\n";
}

int main(int argc, char **argv)
{
struct in_addr ip;
char *arg;
inet_aton(argv[1], &ip);
ares_channel channel;
ares_gethostbyaddr(channel, &ip, 4, AF_INET, dns_callback, arg);
sleep(15);
return 0;
}

最佳答案

你至少必须 initialize使用前的 ares_channel

 if(ares_init(&channel) != ARES_SUCCESS) {
//handle error
}

您还需要一个事件循环来处理 ares 文件描述符上的事件并调用 ares_process处理这些事件(更常见的是,您会将其集成到应用程序的事件循环中)ares 没有什么神奇的,它不使用线程来进行异步处理,所以只需调用 sleep(15);不让战神在“后台”运行

您的回调还应该检查 status 变量,如果查找失败,您将无法访问 host->h_name

一个完整的例子变成:

#include <time.h>
#include <iostream>
#include <netdb.h>
#include <arpa/inet.h>
#include <ares.h>

void dns_callback (void* arg, int status, int timeouts, struct hostent* host)
{
if(status == ARES_SUCCESS)
std::cout << host->h_name << "\n";
else
std::cout << "lookup failed: " << status << '\n';
}
void main_loop(ares_channel &channel)
{
int nfds, count;
fd_set readers, writers;
timeval tv, *tvp;
while (1) {
FD_ZERO(&readers);
FD_ZERO(&writers);
nfds = ares_fds(channel, &readers, &writers);
if (nfds == 0)
break;
tvp = ares_timeout(channel, NULL, &tv);
count = select(nfds, &readers, &writers, NULL, tvp);
ares_process(channel, &readers, &writers);
}

}
int main(int argc, char **argv)
{
struct in_addr ip;
int res;
if(argc < 2 ) {
std::cout << "usage: " << argv[0] << " ip.address\n";
return 1;
}
inet_aton(argv[1], &ip);
ares_channel channel;
if((res = ares_init(&channel)) != ARES_SUCCESS) {
std::cout << "ares feiled: " << res << '\n';
return 1;
}
ares_gethostbyaddr(channel, &ip, sizeof ip, AF_INET, dns_callback, NULL);
main_loop(channel);
return 0;
}
 $ g++ -Wall test_ares.cpp  -lcares $ ./a.out 8.8.8.8google-public-dns-a.google.com

关于c++ - 如何使用 c-ares 将 IP 解析为主机?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4854284/

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