Hi,
I'm a software engineer working on an iPad project that communicates to a server. I must admit my usual languages are Objective C or Java, but my client has requested that the server run in C++. The server right now is coded in java and is using this buffer to read in the input and output stream. I've been researching this via google and am finding quite a few different results for C++. I was wondering what is the most generic cross platform code library/package to mimic the Java.io and java.net package?
PrintWriter out = new PrintWriter(clientSocket.getOutputStream(), true);
BufferedReader in = new BufferedReader(
new InputStreamReader(
clientSocket.getInputStream()));