I'm trying to resolve a hostname from an ip address. I have tried using gethostbyaddr() and getnameinfo() but in many cases the hostname is not resolved at all. Is there a better way to turn an ip address into a valid hostname?
char* ip = argv[1];
// using gethostbyaddr()
hostent * phe = gethostbyaddr(ip, strlen(ip), AF_INET);
if(phe) {
cout << phe->h_name << "\n";
}
// using getnameinfo()
char hostname[260];
char service[260];
sockaddr_in address;
memset(&address, 0, sizeof(address));
address.sin_family = AF_INET;
address.sin_addr.s_addr = inet_addr(ip);
int response = getnameinfo((sockaddr*)&address,
sizeof(address),
hostname,
260,
service,
260,
0);
if(response == 0) {
cout << hostname << "\n";
}
nslookup <address>from the terminal and the command does return a hostname. So I was thinking that perhaps there is a more accurate way of doing this kind of thing. – Krister Andersson May 12 '12 at 14:34gethostbyaddr()does not take achar*as first parameter! – alk May 12 '12 at 14:45