我正在尝试通过 TCP 套接字逐块发送数据。服务器代码执行以下操作:
#define CHECK(n) if((r=n) <= 0) { perror("Socket error\n"); exit(-1); }
int r;
//send the number of blocks
CHECK(write(sockfd, &(storage->length), 8)); //p->length is uint64_t
for(p=storage->first; p!=NULL; p=p->next) {
//send the size of this block
CHECK(write(sockfd, &(p->blocksize), 8)); //p->blocksize is uint64_t
//send data
CHECK(write(sockfd, &(p->data), p->blocksize));
}
在客户端,我读取大小,然后读取数据(相同的 CHECK makro):
CHECK(read(sockfd, &block_count, 8));
for(i=0; i<block_count; i++) {
uint64_t block_size;
CHECK(read(sockfd, &block_size, 8));
uint64_t read_in=0;
while(read_in < block_size) {
r = read(sockfd, data+read_in, block_size-read_in); //assume data was previously allocated as char*
read_in += r;
}
}
只要客户端和服务器都在同一台机器上运行,它就可以很好地工作,但是一旦我通过网络尝试它,它就会在某些时候失败。特别是,前 300-400 个块(à ~587 字节)左右工作正常,但随后我得到一个不正确的 block_size 读数:
received block #372 size : 586
read_in: 586 of 586
received block #373 size : 2526107515908
然后它显然崩溃了。我的印象是 TCP 协议确保不会丢失任何数据并且以正确的顺序接收所有内容,但是考虑到它已经在本地工作,这怎么可能?我的错误是什么?