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

标签 c++ linux dns c-ares

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

#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.8
google-public-dns-a.google.com

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

相关文章:

c++ - std::array 不再发生初始化程序语法错误

c++ - Xcode C++,无法从 main 调用指针返回方法

c - 使用C在Linux中通过串口从SIM读取短信

amazon-web-services - 在 Amazon Route 53 中更好地使用加权循环路由

google-chrome - 使用通配符证书时使用和不使用 SSL 分别托 pipe 域

c++ - 在没有字符串或数组函数的情况下迭代文本

c++ - 万无一失的复制重载 : how not to take care of members that should default-copy?

java - 对 Windows/Linux/Mac 上的 Java 程序中的全局热键使用react?

linux - 多个 PID 存储在 PID 文件中

email - 服务器找不到 IP 地址 NXDOMAIN