当前位置: 技术问答>linux和unix
linux socket 下载文件 的问题
来源: 互联网 发布时间:2016-11-30
本文导语: 用socket模拟下载文件的功能,但是总是只能下载文件到几十kb就停止了。不知道哪儿出错了。 求大牛指点。。。 hostent *hptr; char **ptr; char ipstr[200]; char hostname[200]; char filename[20...
用socket模拟下载文件的功能,但是总是只能下载文件到几十kb就停止了。不知道哪儿出错了。
求大牛指点。。。
hostent *hptr;
char **ptr;
char ipstr[200];
char hostname[200];
char filename[200];
fstream in("in",ios::in);
in>>hostname;
in>>filename;
in.close();
hptr=gethostbyname(hostname);
ptr=hptr->h_addr_list;
inet_ntop(AF_INET,*ptr,ipstr,sizeof(ipstr));
cout
求大牛指点。。。
hostent *hptr;
char **ptr;
char ipstr[200];
char hostname[200];
char filename[200];
fstream in("in",ios::in);
in>>hostname;
in>>filename;
in.close();
hptr=gethostbyname(hostname);
ptr=hptr->h_addr_list;
inet_ntop(AF_INET,*ptr,ipstr,sizeof(ipstr));
cout