免费注册 查看新帖 |

Chinaunix

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

gethostbyname,请教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-02-19 11:04 |只看该作者 |倒序浏览
structhostent*hen;
hen = gethostbyname(argv[1]));

运行Core,求救.

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2004-02-19 11:07 |只看该作者

gethostbyname,请教

把程序贴完整。
从这里看不出任何错误。

论坛徽章:
0
3 [报告]
发表于 2004-02-19 11:12 |只看该作者

gethostbyname,请教


  1. #include <stdio.h>;
  2. #include <sys/types.h>;
  3. #include <netinet/in.h>;
  4. #include <sys/socket.h>;
  5. #include <netdb.h>;
  6. #include <unistd.h>;
  7. #include <string.h>;

  8. #define        HOSTNAMELEN        40
  9. #define        BUFLEN                1024
  10. #define        PORT                13        /*port of daytime server*/

  11. int main(int argc, char argv[])
  12. {
  13.         int        rc;
  14.         int        sockfd; /*socket descriptor */
  15.         char        buf[BUFLEN+1];
  16.         char        *pc;
  17.         struct        sockaddr_in        sa;
  18.         struct        hostent                *hen;

  19.         if (argc < 2)
  20.         {
  21.                 fprintf(stderr, "Missing host name. \n");
  22.                 exit (1);
  23.         }

  24.         /*Address resolution*/
  25.         if ((hen = gethostbyname(argv[1])) == NULL);
  26.         {
  27.                 perror("couldn't resolve host name. \n");
  28.                 exit (1);
  29.         }

  30.         memset (&sa, 0, sizeof(sa));
  31.         sa.sin_family = AF_INET;
  32.         sa.sin_port = htons(PORT);
  33.         memcpy (&sa.sin_addr.s_addr, hen->;h_addr_list[0], hen->;h_length);

  34.         sockfd = socket(AF_INET, SOCK_STREAM, 0);
  35.         if (sockfd < 0)
  36.         {
  37.                 perror("socket() failed");
  38.         }


  39.         rc = connect(sockfd, (struct sockaddr *)&sa, sizeof(sa));
  40.         if (rc)
  41.         {
  42.                 perror("connect() failed");
  43.         }

  44.         /*reading the socket */
  45.         pc = buf;
  46.         while (rc = read(sockfd, pc, BUFLEN - (pc - buf)))
  47.         {
  48.                 pc += rc;
  49.         }

  50.         /*close the socket*/
  51.         close (sockfd);

  52.         *pc = '\0';

  53.         printf("Time: %s", buf);

  54.         return 0;
  55. }
复制代码

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
4 [报告]
发表于 2004-02-19 11:17 |只看该作者

gethostbyname,请教

main函数的原型:

  1. int main(int argc, char *argv[])
复制代码

看看你的。

论坛徽章:
0
5 [报告]
发表于 2004-02-19 11:24 |只看该作者

gethostbyname,请教

谢谢
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP