gethostbyname()

#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);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值