5
votes

Calling getsockopt with SO_RCVBUF will return the allocated size of the socket receive buffer.

I am curious to know if it is possible to query for how many datagram packets (or bytes) are actually in the buffer prior to calling recv or recvfrom? If it helps, I can settle for a Linux specific answer. The socket in question is UDP, but I suspect it wouldn't matter for TCP.

The reason why I ask is only for testing and debugging purposes. I'm trying to validate if my call to setsocktop(SO_RCVBUF) is setting a sufficient enough size. Knowing if the receive buffer was ever close to reaching its limit would validate if a sufficient size was set.

3

3 Answers

3
votes

On Windows, what you are looking for is available via ioctlsocket(FIONREAD) and WSAIoCtl(FIONREAD), which both return the full size of the complete buffered data, even when multiple datagram messages are buffered. However, there is no equivalent on Linux. There is ioctl(FIONREAD), which only returns the size of the next buffered message.

2
votes

use the SIOCINQ ioctl() on the socket to learn the amount of queued incoming bytes.

Similarly there's SIOCOUTQ for querying the send buffer.

0
votes

The sufficient size for the socket receive buffer is given by the bandwidth-delay product for the link. Bandwidth in. Bytes/second times delay in seconds = buffer size in bytes. The idea is to advertise a TCP window large enough that the sender can 'fill the pipe'. You can calculate that in advance: you don't need to tune it at runtime. Sizes towards 64k are good.