我可以发送非常大的文本文件没问题。我尝试发送 jpg 等,但它不会工作。文件大小正确。我不知道我错过了什么。我通过在发送到 temp.foo 文件之前写入数据来检查我的读写功能。我检查它,它可以处理任何事情。
我这样发送
for(vector< .... >::iterator it = v.begin(); it!=v.end(); ++it ){
pair<...> p=*it;
send(s,p.first,p.second,0);
}
然后另一个程序读取它
for(i = 0; i < size; i+=max){
b= 0;
while (b== 0) {
if ((b = recv(s, buf, max, 0)) == -1) {
perror("recv");
exit(1);
}
}
stringstream ss;
ss << buf;
char * out = (char*)malloc(b);
memcpy(out,buff,numbytes);// Perhaps my error is here?
}
// write function call here