(转载)Linux网络编程-使用gethostbyaddr,通过ip地址,得到该ip地址的主机的信息
(转载)http://blog.csdn.net/szwpc/article/details/518355
struct hostent *gethostbyaddr(const char *name)
这个函数,传入值是IP地址(注意,这里不是简单的字符串,需要先将字符串形式的IP地址由inet_aton转化一下),然后经过函数处理,将结果由返回值传出。返回值是一个hostent结构,具体可以参考我的Blog对于gethostbyname()这篇文章的解释。
因为有了hosten这个传出的结构,我们可以在这个结构里面找到我们想需要的信息。
下面的是例程。 编译后只需在命令行输入./a.out 202.102.14.141 (IP地址)就可以看结果了。
#include <netdb.h> #include <sys/socket.h> int main(int argc, char **argv) { char *ptr; char **pptr; char str[32]; char ipaddr[16]; struct hostent *hptr; struct in_addr hipaddr; ptr = argv[1]; // 取得命令后第一个参数,即要解析的IP地址 /* 调用inet_aton(),ptr就是以字符串存放的地方的指针,hipaddr是in_addr形式的地址 */ if(!inet_aton(ptr, &hipaddr)) { printf("inet_aton error\n"); return 1; } /* 调用gethostbyaddr(),调用结果都存在hptr中 */ if ((hptr = gethostbyaddr(&hipaddr, 4, AF_INET) ) == NULL ) { printf("gethostbyaddr error for addr:%s\n", ptr); return 1; } printf("hostname:%s\n",hptr->h_name); // 将主机的规范名打出来 for (pptr = hptr->h_aliases; *pptr != NULL; pptr++) // 将主机所有别名分别打出来 printf(" alias:%s\n",*pptr); /* 根据地址类型,将地址打出来 */ switch (hptr->h_addrtype) { case AF_INET: case AF_INET6: pptr=hptr->h_addr_list; /* 将刚才得到的所有地址都打出来。其中调用了inet_ntop()函数 */ for(; *pptr!=NULL; pptr++) printf("address:%s\n", inet_ntop(hptr->h_addrtype, *pptr, str, sizeof(str))); break; default: printf("unknown address type\n"); break; } return 0; }