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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This question is based on a false premise. In C, the signature for the
Note that you pass a pointer to a buffer, and the length of that buffer. The manual entry then says:
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. |
||||
|
recvfromwould 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