|
|
|
|
|
by ww520
3801 days ago
|
|
Fragmented IP datagram is re-assembled at the IP layer before it is handed up to UDP or TCP layer. If it can't be re-assembled, the datagram is considered lost. UDP is unreliable and has small packet size. The TCP code is emulating that simple requirement. Why expand the requirement? Looping to read fully would block on one connection. One rogue client would hold up the whole server. |
|
You are only guaranteed to get the bytes in the correct order but you have to find the boundaries between messages yourself.