private final InputStream in;
private final OutputStream out;
public SocketConnection(Socket socket) throws IOException {
this.socket = socket;
this.in = new StrictBufferedInputStream(socket.getInputStream(), 65536);// 64 KB buffer
this.out = socket.getOutputStream();
}