* Convert and parse input into the requested output, then write it.
*/
String[] lines = req.split(CRLF);
for (int i = 0; i < lines.length; i++) {
if (lines[i].startsWith("GET"))
new HttpContent(socket, lines[i]).write(out);
}
/**
* Flush and close output stream.
*/
in.close();