我想将TCP连接上的数据流存储到大型阵列中,该怎么办?

我的代码:

int iResult, count;
int recvbuflen = 512;
char buff[4096]={0};
char recvbuf[512] = {0};

.................

count = 0;

do {

    iResult = recv(ClientSocket, recvbuf, recvbuflen, 0);
    if (iResult > 0) {

                count+=iResult;

                //code to store in the buff[] array until reach to 4096 byte
                //that's what i need
                //for example: each time bind or add the recvbuf[] array at
                //the end of buff[] array until reach to 4096 byte.

                if(count == 4096)
                {
                  //do the next process
                  count = 0;
                }
              }
    }while(iResult > 0);

任何帮助。

最佳答案

您可以直接进入大缓冲区并每次添加偏移量:

iRes = recv(ClientSocket, (buff+offset), 4096-offset, 0);

等等,请当心不要使缓冲区溢出。如果您需要分别接收数据并根据内容将其添加到缓冲区,只需将recvbuf存入缓冲区(带偏移量)即可。偏移量一直保持跟踪,直到缓冲区已满为止。
同样,请注意缓冲区溢出。

10-07 15:04