Confused about a concept...
Suppose if the client call sendto() twice, each time sending datagram of 100 bytes to the server. Then if the server call recvfrom() with a receive buffer of 200 bytes, will it be receiving both datagrams into the same buffer?
From what I learn.. if i do sendto(100) , then I will be receiving back the recvfrom(100) back on the same datagram transport "space"
but since it is sent twice of 100..will the recvfrom(200) be on a different buffer then?
Thanks.