Maximum buffer length for sendto? Maximum buffer length for sendto? unix unix

Maximum buffer length for sendto?


Use getsockopt(). This site has a good breakdown of the usage and options you can retrieve.

In Windows, you can do:

int optlen = sizeof(int);int optval;getsockopt(socket, SOL_SOCKET, SO_MAX_MSG_SIZE, (int *)&optval, &optlen);

For Linux, according to the UDP man page, the kernel will use MTU discovery (it will check what the maximum UDP packet size is between here and the destination, and pick that), or if MTU discovery is off, it'll set the maximum size to the interface MTU and fragment anything larger. If you're sending over Ethernet, the typical MTU is 1500 bytes.


On Mac OS X there are different values for sending (SO_SNDBUF) and receiving (SO_RCVBUF).This is the size of the send buffer (man getsockopt):

getsockopt(sock, SOL_SOCKET, SO_SNDBUF, (int *)&optval, &optlen);

Trying to send a bigger message (on Leopard 9216 octets on UDP sent via the local loopback) will result in "Message too long / EMSGSIZE".


As UDP is not connection oriented there's no way to indicate that two packets belong together. As a result you're limited by the maximum size of a single IP packet (65535). The data you can send is somewhat less that that, because the IP packet size also includes the IP header (usually 20 bytes) and the UDP header (8 bytes).

Note that this IP packet can be fragmented to fit in smaller packets (eg. ~1500 bytes for ethernet).

I'm not aware of any OS restricting this further.

Bonus

SO_MAX_MSG_SIZE of UDP packet

  • IPv4: 65,507 bytes
  • IPv6: 65,527 bytes