免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3337 | 回复: 5
打印 上一主题 下一主题

[函数] 再谈gethostbyname()函数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-24 11:09 |只看该作者 |倒序浏览
系统:sco 5.0.5
用命令host可以正常解析域名,也可以用域名上网.这应该说dns配置没问题吧.
但在程序中我用gethostbyname()函数却不能解析域名,请问还有什么没配置好啊.多谢高手指教啊.

论坛徽章:
0
2 [报告]
发表于 2005-11-24 14:31 |只看该作者
哪位高手知道呢.

论坛徽章:
0
3 [报告]
发表于 2005-11-24 15:21 |只看该作者
找你这样说是应该不会的!!
是不是程序不对!
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>

int main(int argc, const  char **argv)
{

     struct hostent *hp;
     char **p;

     hp=gethostbyname(argv[1]);
     if (hp == NULL) {
          (void) printf("host information for %s no found n", argv[1]);
          exit (3);
     }

     for (p = hp->h_addr_list; *p!=0;p++){
         struct in_addr in;
         char **q;

         (void)memcpy(&in.s_addr, *p, sizeof(in.s_addr));
         (void)printf("%st%s",inet_ntoa(in), hp->h_name);
         for (q=hp->h_aliases;*q != 0; q++)
              (void) printf("%s", *q);
        (void)putchar('n');
     }
     return 0;
}

论坛徽章:
0
4 [报告]
发表于 2005-11-24 15:23 |只看该作者
试试这个!我这边可以!!  第一个参数不能为空啊!! 要不然会  segemention fault 阿!!

论坛徽章:
0
5 [报告]
发表于 2005-11-24 15:32 |只看该作者
建议遇到错误,先用perror或herror得到错误信息,这样找起来起码有个方向。

参考一下下面的代码.

  1. #include <netdb.h>
  2. #include <sys/socket.h>
  3. #include <netinet/in.h>
  4. #include <arpa/inet.h>
  5. #include <stdio.h>
  6. #include <stdlib.h>

  7. int main(int argc, char* argv[])
  8. {
  9.   struct hostent* hostInfo;
  10.   struct in_addr address;
  11.   struct in_addr** addrPtr;
  12.   char** next;

  13.   if (2 != argc)
  14.   {
  15.     fprintf(stderr, "必须带一个参数n");
  16.     exit(EXIT_FAILURE);
  17.   }

  18.   if (inet_aton(argv[1], &address)) /*点分十进制格式*/
  19.   {
  20.     hostInfo = gethostbyaddr((char *)&address, sizeof(struct in_addr),
  21.         AF_INET);
  22.   }
  23.   else   /* 主机域名 */
  24.   {
  25.     hostInfo = gethostbyname(argv[1]);
  26.   }

  27.   if (NULL == hostInfo)
  28.   {
  29.     herror("look up host");
  30.     exit(EXIT_FAILURE);
  31.   }

  32.   fprintf(stdout, "host name is %sn", hostInfo->h_name);

  33.   /*
  34.    * 如果有多个别名
  35.    */
  36.   if (hostInfo->h_aliases[0])
  37.   {
  38.     printf("Aliases: n");
  39.     for (next = hostInfo->h_aliases; *next; ++next)
  40.       printf("t%sn", *next);
  41.   }
  42.   printf("n");
  43.   /*
  44.    *多个地址
  45.    */
  46.   printf("Address: ");
  47.   for (addrPtr = (struct in_addr **)hostInfo->h_addr_list;
  48.       *addrPtr;
  49.       addrPtr++)
  50.   {
  51.     printf("t%sn", inet_ntoa(**addrPtr));
  52.   }
  53.   printf("n");


  54.   exit(EXIT_SUCCESS);
  55. }
复制代码

论坛徽章:
0
6 [报告]
发表于 2005-11-25 08:59 |只看该作者
楼上两位朋友的代码的确有效,多谢了,以后要向你们多多学习啊。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP