I try to read UDP data-gram sequentially. But got issue during second read operation. You can see in below snippest where i try to read first time and lost 12 byte of packet from UDP receive buffer.
Snippest Code:
sock = socket(AF_INET, SOCK_DGRAM | SOCK_CLOEXEC, IPPROTO_UDP);
bytesInBuffer = 0;
if (-1 == ioctl(sock, FIONREAD, &bytesInBuffer))
{
printf("%s:%d, Fail to read bytes in buffer\n", __func__, __LINE__);
//If failure on ioctl then continue with select and read functionality
bytesInBuffer = 0;
}
printf("%s:%d, bytesInBuffer: %d\n", __func__, __LINE__, bytesInBuffer);
errno = 0;
/* Now recv as it will not block */
i32RetVal = recvfrom(sock, buffer, 40, MSG_NOSIGNAL | MSG_DONTWAIT, NULL, NULL);
printf("%s:%d, i32RetVal: %d\n", __func__, __LINE__, i32RetVal);
if (0 > i32RetVal)
{
printf("%s:%d, Recv failed with status: %d, Err: %d, SErr: %s\n", __func__, __LINE__, status, errno, strerror(errno));
status = -1;
break;
}
else if (0 == i32RetVal)
{
/* other side closed its send pipe */
status = -1;
printf("%s:%d, Recv failed as other side closed pipe\n", __func__, __LINE__);
break;
}
bytesInBuffer = 0;
if (-1 == ioctl(sock, FIONREAD, &bytesInBuffer))
{
printf("%s:%d, Fail to read bytes in buffer\n", __func__, __LINE__);
//If failure on ioctl then continue with select and read functionality
bytesInBuffer = 0;
}
printf("%s:%d, bytesInBuffer: %d\n", __func__, __LINE__, bytesInBuffer);
Output:
Recv_from:304, bytesInBuffer: 52
Recv_from:309, i32RetVal: 40
Recv_from:332, bytesInBuffer: 0
Question: Why 12 bytes from read buffer got discarded?
Any help will be appreciated. :)
If you read the
UDP(7)
manual page you will see this entry forFIONBIO
:(Emphasis mine.)
So the
FIONBIO
doesn't give you the number of bytes in the buffer, but the size of the next packet. If no new packet has been received you get zero.