问题描述
- linux c语言 socket编程 recv每次收到一样的数据
-
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main() {
int so=socket(AF_INET,SOCK_STREAM,0),r;
sockaddr_in addr;
hostent hp;
hp=gethostbyname("www.csdn.net");
addr.sin_addr.s_addr=((unsigned long*)hp->h_addr);
addr.sin_family=AF_INET;
addr.sin_port=htons(80);
connect(so,(sockaddr*)&addr,sizeof(sockaddr));
char message[200]="GET / HTTP/1.0rnHost:www.csdn.netrnrn";
send(so,message,strlen(message)+1,0);
char buf[1024]={0};
while(recv(so,buf,1024,MSG_PEEK)){
puts(buf);
memset(buf,0,1024);
}
}
就这样一直收不完,请问为什么
谢谢
解决方案
Please Don't use "MSG_PEEK",If you use it ,you will recv the same message !!!
解决方案二:
http://download.csdn.net/detail/smallking2012/6298859
解决方案三:
HTTP GET 方式,你每次发送的 GET 指令都相同,接收到的内容是一样这很正常;接收到的不一样,个人认为才是不正常的。
解决方案四:
你fwencsdn,页面返回内容很多吧,你buf开大一点呢。这样i一次可以多处理一些。
时间: 2024-10-29 08:19:06