- 论坛徽章:
- 0
|
新学的socket编程,从网上找到一个传输文件的代码,但是编译不成功,请各位看看是什么文体,另外请各位高手帮忙讲解下client接收文件时的思路,有点看不明白……
服务器端:
- #include<stdio.h>
- #include <stdlib.h>
- #include<sys/types.h>
- #include<sys/fcntl.h>
- #include<sys/socket.h>
- #include<netinet/in.h>
- #include<netdb.h>
- #include<errno.h>
- int main(int argc,char **argv)
- {
- char c,buf[1024],file[30],host[30];
- int fromlen,source;
- register int k,s,ns;
- struct sockaddr_in sin;
- struct sockaddr_in theri_sin;/*client addr*/
- struct hostent *hp;
- system("clear");
- printf("\n");
- printf("input file name:");
- scanf("%s",file);
- if ((source=open(file,O_RDONLY))<0)
- {
- perror("源文件打开出错");
- exit(1);
- }
- printf("\n\n\t\t输入要传输的地质:");
- scanf("%s",host);
-
- printf("\n\t\t在传送文件,稍候");
-
- hp=gethostbyname("host");/*get host addr*/
- if(hp==NULL)
- {
- perror("返回主机地址信息错");
- exit(2);
- }
- s=socket(AF_INET,SOCK_STREAM,0);
- if(s<0)
- {
- perror("获取SOCKET号失败");
- exit(3);
- }
-
- sin.sin_family=AF_INET;
- sin.sin_port=htons(1500);/*use port 1500*/
- /*sin.sin_addr.s_addr = INADDR_ANY;*/
- bcopy(hp->h_addr,&sin.sin_addr,hp->h_length);
- if(bind(s,(struct sockaddr *)&sin,sizeof(sin))<0)
- {
- perror("不能将服务器地址捆绑到SOCKET号上");
- close(s);
- exit(4);
- }
-
- if(listen(s,5)<0)
- {
- perror("sever:listen");
- exit(5);
- }
- while(1)
- {
- fromlen=sizeof(struct sockaddr_in);
- if((ns=accept(s,(struct sockaddr *)&sin,&fromlen))<0)
- {
- perror("sever:accept");
- exit(6);
- }
-
- printf("received a connection from %s\n", inet_ntoa(their.sin_addr));/*new*/
-
- lseek(source,0L,0);/*when the server connected by client,the pointer move to head from file*/
- write(ns,file,sizeof(file)); /*send file name*/
- while((k=read(source,buf,sizeof(buf)))>0)
- write(ns,buf,k);
- printf("\n\n\t\t传输完毕\n");
- close(ns);
- }
- close(source);
- exit(0);
- }
复制代码
客户端:
- #include<stdio.h>
- #include<sys/types.h>
- #include<sys/fcntl.h>
- #include<sys/socket.h>
- #include<netinet/in.h>
- #include<netdb.h>
- #include<errno.h>
- #include<string.h>
- #include <stdlib.h>
- main(int argc, char *argv[])
- {
- char buf[1024],file[30];
- char *strs="\n\n\t\t正在接收文件";
- int target;
- register int k,s;
- struct sockaddr_in sin;
- struct hostent *hp;
- system("clear");
- printf("\n");
-
- if (argc < 2)
- {
- fprintf(stderr,"Please enter the server's hostname!\n");
- exit(1);
- }
-
- hp=gethostbyname(argv[1]);/*get host addr by user's input*/
-
- if(hp==NULL)
- {
- perror("返回服务器地址信息错!!!");
- exit(1);
- }
-
- s=socket(AF_INET,SOCK_STREAM,0);
- if(s<0)
- {
- perror("获取SOCKET号失败!!!");
- exit(2);
- }
- sin.sin_family=AF_INET;
- sin.sin_port=htons(1500);/*端口号需与服务器程序使用的一致*/
- sin.sin_addr = *((struct in_addr *)host->h_addr);
-
- /*bcopy(hp->h_addr,&sin.sin_addr,hp->h_length);*/
- printf("\n\n\t\t正在与服务器连接…");
- if(connect(s,&sin,sizeof(sin),0)<0)
- {
- perror("不能与服务器连接!!!");
- exit(3);
- }
- while((k=read(s,file,sizeof(file)))<=0)/*接收文件名*/
- if((target=open(file,o_WRONLY|O_CREAT|O_TRUNC,0644))<0)
- {
- perror("不能打开目标文件!!");
- exit(4);
- }
- strcat(strs,file);
- strcat(strs,",稍候…");
- write(1,strs,strlen(strs));
- while((k=read(s,buf,sizeof(buf)))>0)
- write(tatget,buf,k);
- printf("\n\n\t\t接收文件成功!!!\n");
- close(s);
- close(target);
- }
复制代码 |
|