Hi,

I am trying to make a really basic server that echoes whatever it receives from the client connected to it. Catch being the client is written in c++. The client sends an initiating packet to the server, which I am trying to echo to output.

I am using BufferedReader to read the incoming data from the socket. The problem is that even if I read each char, I cannot read the last char of incoming stream until the client...