- 论坛徽章:
- 1
|
socket 编程时的困惑
我修改后的如下,在aix上编译。
- #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 ...."
- int 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_addr = *((struct in_addr *)hp->;h_addr);
- server.sin_port = htons(atoi(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);
- }
-
复制代码 |
|