In a client server model, the queued message is lost when the same client socket descriptor is used for both transmission and reception. I am using TCP/IP communication protocol and it is done in C language.
What would be the problem?
Please help.
My code:
f (select(fdmax+1, &read_fds, NULL, NULL, NULL) == -1)
{
perror("select");
continue;
}
/* Checks if the socket descriptor ready for reading is from the incomming connection */
if( FD_ISSET (listeningfd, &read_fds))
{
}
else
{
clientPtr=&start;
while(clientPtr->next != NULL)
{
clientPtr = clientPtr->next;
if( FD_ISSET (clientPtr->clientfd, &read_fds))
{
i = clientPtr->clientfd;
break;
}
}
if ((numbytes = recv(i, &option, 4, 0)) == -1)
{
perror("recv : option");
continue;
}
if(numbytes == 0)
{
clientPtr=&start;
while(clientPtr->next != NULL)
{
if(clientPtr->next->clientfd == i)
{
temp = clientPtr->next;
printf("%s closed connection\n",clientPtr->next->clientName);
clientPtr->next = clientPtr->next->next;
free(temp);
break;
}
if(clientPtr == NULL)
break;
clientPtr = clientPtr->next;
}
close(i);
FD_CLR(i, &master);
continue;
}
if(option == 1)
{
if((numbytes = send(i,&option, 4, 0)) == -1)
{
perror("send : option");
continue;
}
else
printf("send option %d\n",option);
clientPtr=&start;
while(clientPtr->next != NULL)
{
clientPtr = clientPtr->next;
if(clientPtr->clientfd != i)
{
if((numbytes = send(i,&clientPtr->clientName, 11, 0)) == -1)
{
perror("send c name");
break;
}
}
}
if((numbytes = send(i,"0000000000\0", 11, 0)) == -1)
{
perror("send Null");
continue;
}
}
else if(option == 2)
{
if((numbytes = recv(i,&clientHeader, 15, 0)) == -1)
{
perror("recv c head");
continue;
}
printf("8\n");
mesgPtr = (char *)malloc(clientHeader.size);
if((numbytes = recv(i, mesgPtr, clientHeader.size, 0)) == -1)
{
perror("recv mesg");
continue;
}
clientPtr=&start;
sendfd = -1;
while(clientPtr->next != NULL)
{
clientPtr = clientPtr->next;
printf("%s %s\n",clientHeader.name,clientPtr->clientName);
if(strcmp(clientHeader.name, clientPtr->clientName) == 0)
{
sendfd = clientPtr->clientfd;
break;
}
}
clientPtr=&start;
while(clientPtr->next != NULL)
{
clientPtr = clientPtr->next;
if(clientPtr->clientfd == i)
{
strcpy(clientHeader.name,clientPtr->clientName);
break;
}
}
if(sendfd == -1)
{
option = 0;
if((numbytes = send(i,&option, 4, 0)) == -1)
{
perror("send option 2:");
continue;
}
continue;
}
if((numbytes = send(sendfd,&option, 4, 0)) == -1)
{
perror("send option 2:");
continue;
}
if((numbytes = send(sendfd, &clientHeader, 15, 0)) == -1)
{
perror("sendHead");
continue;
}
if((numbytes = send(sendfd, mesgPtr, clientHeader.size, 0)) == -1)
{
perror("sendMesg");
exit(1);
}
free(mesgPtr);
}
else if(option == 3)
{
if((numbytes = send(i,&option, 4, 0)) == -1)
{
perror("send option 2:");
continue;
}
printf("send option %d \n",option);
}
// printf("error ocured\n");
}

recv, the only way to know how many bytes you received is no look at the return value. But you don't. How can your code possibly be correct when it has no idea how many bytes of data it received?! – David Schwartz Feb 13 at 12:00