我正在发送一个文本文件 - 客户端-服务器将文本分解为每个 512 字节的数据包,但一些数据包包含的文本小于最大大小,因此在服务器端接收每个数据包时我正在调用 malloc() 再次构建一个字符串,这是一种不好的做法吗?保留一个适合最大长度的工作缓冲区并继续迭代、复制和覆盖其值是否更好?
好的@nm这里是代码,这个 if 在 for(;;) 循环中被 select() 唤醒
if(nbytes==2) {
packet_size=unpack_short(short_buf);
printf("packet size is %d\n",packet_size);
receive_packet(i,packet_size,&buffer);
printf("packet=%s\n",buffer);
free(buffer);
}
//and here is receive_packet() function
int receive_packet(int fd,int p_len,char **string) {
*string = (char *)malloc(p_len-2); // 2 bytes for saving the length
char *i=*string;
int temp;
int total=0;
int remaining=p_len-2;
while(remaining>0) {
//printf("remaining=%d\n",remaining);
temp = recv(fd,*string,remaining,0);
total+=temp;
remaining=(p_len-2)-total;
(*string) += temp;
}
*string=i;
return 0;
}