#include<unistd.h>
#include<stdlib.h>
#include<sys/socket.h>
#include<netinet/in.h>
#include<stdio.h>
#include<netdb.h>
int main(int argc,char **argv){
char * ptr;
char * *pptr;
char str[32];
struct hostent *hptr;
while(--argc > 0)
{
ptr=argv[1]; /* 取得命令后第一个参数,即要解析的域名或主机名 */
if((hptr=gethostbyname(ptr)) == NULL) /* 调用gethostbyname()。调用结果都存在hptr中 */
{
printf("gethostbyename call error:%s,%s/n",ptr);
continue;
}
printf("caninical name:%s/n",hptr->h_name); /* 将主机的规范名打出来 */
for(pptr=hptr->h_aliases;*pptr!=NULL;pptr++) /* 主机可能有多个别名,将所有别名分别打出来 */
printf("the aliases name is:%s/n",*pptr);
switch(hptr->h_addrtype) /* 根据地址类型,将地址打出来 */
{
case AF_INET:
case AF_INET6:
pptr=hptr->h_addr_list;
for(;*pptr!=NULL;pptr++) /* 将刚才得到的所有地址都打出来。其中调用了inet_ntop()函数 */
printf("address:%s/n",inet_ntop(hptr->h_addrtype,*pptr,str,sizeof(str)));
break;
default:
printf("unknown addrtype");
break;
}
}
exit(0);
}