18,364
社区成员




char temp[256] = {0};
memset(temp, 10, 256);
for (int j=0;j<1000; j++)
{
int nSend = ::send(sockArray[i], temp, strlen(temp), 0);
if (nSend < 0)
{
int nError = GetLastError();
printf("send Error!-- %d\n", nError);
}
else
{
printf("%d------\n", (j+1));
}
}