免费注册 查看新帖 |

Chinaunix

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

socket 编程时的困惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-12-02 15:10 |只看该作者 |倒序浏览
#include <stdio.h>;
#include <sys/param.h>;
#include <sys/stat.h>;
#include <sys/ioctl.h>;
#include <sys/time.h>;
#include <sys/file.h>;
#include <sys/types.h>;
#include <sys/socket.h>;
#include <arpa/ftp.h>;
#include <netinet/in.h>;
#include <netdb.h>;


#define  DATA "The sea is clam ...."
main(int argc, char *argv[] )  
{  
      int  sock, rval, wrval;
      char buf[1024];
     struct  sockaddr_in  server;
     struct  hostent  *hp, *gethostbyname();
     FILE  *fp;
  
    sock = socket(AF_INET,SOCK_STREAM,0);
    if (sock < 0) {
        perror("opening stream socket";
        exit(1);
     }
    server.sin_family=AF_INET;
    hp=gethostbyname(argv[1]);
   if (hp == 0 ) {
       printf( "%s : unknown host\\n", argv[1]);
     exit(2);
   }
     bcopy((char*)hp->;h_addr, (char *)&server.sin_addr, hp-  >;h_length);  
   server.sin_port = argv[2];  
  if (connect(sock, (struct sockaddr *)&server, sizeof server) < 0)
{
        perror ("connecting stream socket";
       exit(1);
}  

/*----------------------------------------------------------*/  
/*  FTP Client Command : ftp_clnt sparc10 5000 Source Dest  */  
/*  Write the wanted filename to sock ...>; ftp_serv-------------(3)  */
/*----------------------------------------------------------*/  
if (write(sock, argv[3],strlen(argv[3])) < 0)
          perror ("writing stream socket";
    sleep(1);
    printf("要求取得檔案 [%s], 並儲存中...\\n",argv[3]);
    fp=fopen(argv[4],"w+";
/*---------------------------------------------------------*/
/*  Read file content from sock (sent from ftp_serv )  */
/*  and Write to local file -------------(4)*/  
/*---------------------------------------------------------*/
  while ( (rval=read(sock,buf,sizeof(buf) )) >;1) {
         printf(".";
         fputs(buf,fp);
}
     fclose(fp);
     close(sock);
     printf("檔案存取完畢 !!  \\n";
     printf("結束連線 !!  \\n";  
    exit(0);
}

我编译时怎么生成不了.out 文件啊。  帮忙看看

论坛徽章:
0
2 [报告]
发表于 2003-12-02 15:17 |只看该作者

socket 编程时的困惑

我是在sco unix 5.0.4  下编的。

论坛徽章:
0
3 [报告]
发表于 2003-12-02 15:23 |只看该作者

socket 编程时的困惑

语法没有错啊。怎么说我 的 socket  connect 等函数变量没有定义????

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

socket 编程时的困惑

我修改后的如下,在aix上编译。

  1. #include <stdio.h>;
  2. #include <sys/param.h>;
  3. #include <sys/stat.h>;
  4. #include <sys/ioctl.h>;
  5. #include <sys/time.h>;
  6. #include <sys/file.h>;
  7. #include <sys/types.h>;
  8. #include <sys/socket.h>;
  9. #include <arpa/ftp.h>;
  10. #include <netinet/in.h>;
  11. #include <netdb.h>;


  12. #define DATA "The sea is clam ...."
  13. int main(int argc, char *argv[] )
  14. {
  15.         int sock, rval, wrval;
  16.         char buf[1024];
  17.         struct sockaddr_in server;
  18.         struct hostent *hp, *gethostbyname();
  19.         FILE *fp;

  20.         sock = socket(AF_INET,SOCK_STREAM,0);
  21.         if (sock < 0) {
  22.                 perror("opening stream socket");
  23.                 exit(1);
  24.         }
  25.         server.sin_family=AF_INET;
  26.         hp=gethostbyname(argv[1]);
  27.         if (hp == 0 ) {
  28.                 printf( "%s : unknown host\\n", argv[1]);
  29.                 exit(2);
  30.         }
  31.         //bcopy((char*)hp->;h_addr, (char *)&server.sin_addr, hp- >;h_length);
  32.         server.sin_addr = *((struct in_addr *)hp->;h_addr);
  33.         server.sin_port = htons(atoi(argv[2]));
  34.         if (connect(sock, (struct sockaddr *)&server, sizeof server) < 0)
  35.         {
  36.                 perror ("connecting stream socket");
  37.                 exit(1);
  38.         }

  39. /*----------------------------------------------------------*/
  40. /* FTP Client Command : ftp_clnt sparc10 5000 Source Dest */
  41. /* Write the wanted filename to sock ...>; ftp_serv-------------(3) */
  42. /*----------------------------------------------------------*/
  43.         if (write(sock, argv[3],strlen(argv[3])) < 0)
  44.                 perror ("writing stream socket");
  45.         sleep(1);
  46.         printf("要求取得檔案 [%s], 並儲存中...\\n",argv[3]);
  47.         fp=fopen(argv[4],"w+");
  48. /*---------------------------------------------------------*/
  49. /* Read file content from sock (sent from ftp_serv ) */
  50. /* and Write to local file -------------(4)*/
  51. /*---------------------------------------------------------*/
  52.         while ( (rval=read(sock,buf,sizeof(buf) )) >;1) {
  53.                 printf(".");
  54.                 fputs(buf,fp);
  55.         }
  56.         fclose(fp);
  57.         close(sock);
  58.         printf("檔案存取完畢 !! \\n");
  59.         printf("結束連線 !! \\n");
  60.         exit(0);
  61. }
复制代码

论坛徽章:
0
5 [报告]
发表于 2003-12-02 15:44 |只看该作者

socket 编程时的困惑

编译通过了吗??

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

socket 编程时的困惑

[quote]原帖由 "wynpu"]编译通过了吗??[/quote 发表:

是呀,通过了,怎么了?
其实前面有一个帖子也是讲socket的,
可以看一看他的代码。

论坛徽章:
0
7 [报告]
发表于 2003-12-02 15:49 |只看该作者

socket 编程时的困惑

哦。对。字节顺序。。
我在sco unix 还是有前面说的问题啊。生成不了.out 文件啊。

论坛徽章:
0
8 [报告]
发表于 2003-12-02 16:01 |只看该作者

socket 编程时的困惑

原帖由 "lenovo" 发表:

是呀,通过了,怎么了?
其实前面有一个帖子也是讲socket的,
可以看一看他的代码。


把你的makefile 给我看看吧。
chy_bige@hotmail.com

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

socket 编程时的困惑

原帖由 "mac_handle" 发表:


把你的makefile 给我看看吧。
chy_bige@hotmail.com

我没用makefile,就是这样:
gcc -osock sock.c

论坛徽章:
0
10 [报告]
发表于 2003-12-02 16:15 |只看该作者

socket 编程时的困惑

哦。 谢谢了lenovo      。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP