Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Coming from a C socket()/recv() background, the Java DatagramSocket.receive API seems a bit strange. Why does force the programmer to allocate a DatagramPacket large enough for the incoming data?

share|improve this question
So, what is the behavior in C? – Paŭlo Ebermann Feb 7 '11 at 0:43
That is a good question… Up until now I had assumed that recvfrom would continue to return the remaining data, but experiments prove that I am mistaken. See comment on @Stephen C's answer. – David Wolever Feb 7 '11 at 2:17

1 Answer

up vote 4 down vote accepted

This question is based on a false premise. In C, the signature for the recv syscall is:

ssize_t recv(int s, void *buf, size_t len, int flags);

Note that you pass a pointer to a buffer, and the length of that buffer. The manual entry then says:

If a message is too long to fit in the supplied buffer, excess bytes may be discarded depending on the type of socket the message is received from.

In other words, the C API expects the caller to allocate a "large enough" buffer, and may truncate messages that are longer ... just like Java does.

share|improve this answer
So, my system's man pages do not make it clear exactly when the excess bytes will be discarded… But on reflection it makes sense that, because UDP isn't streaming, it would not be sensible to try and store the unread portion of a datagram and return it on the next call to recvfrom… And a quick experiment proved this to be true. Thanks for the help. – David Wolever Feb 7 '11 at 2:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.