That is indeed alot of data xD
It is weird, your channel join code looks OK and mine joins the channel (now and then ). There is only 1 channel join command and we both wrote it the same (well beside that you only end it with '\n' and i have '\r\n' would that matter?) it should be right
Also why not use a loop for the input check?? Writing the code 4 times seems pretty useless :V
And what if there is even more input??
IE:
while(1)
{
if(recv(kSock, buf1, 4096, 0) <= 0)
{
printf(">>Server: No Data\n");
break;
}
printf(">>Server: %s\n", receiveData);
}
[Updated on: Thu, 18 February 2010 05:39]
Report message to a moderator