in reply to Re: Creating a TCP client, that receives and responds in individual packets
in thread Creating a TCP client, that receives and responds in individual packets

Here involves two different concepts:
  1. TCP reassembles all packets, and that is transparent to the end programmer.
  2. When your application reads from buffer, it shall take care of the boundary between packets.
  • Comment on Re: Re: Creating a TCP client, that receives and responds in individual packets