使用する前に、少なくとも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