Here is the situation:
I have multiple clients and one host. The message format&size is specified.
suppose all the clients send a message at the same time, that is N message are send to host.
My question is: will the host receive a mixed message, I mean will host receives some bits of message A and followed by some bits from message B ? Or the messages will be received in whole?
Thanks
When you read data from the socket (e.g., with
recvfrom) all the data returned from that call will be from a single source.