* @return an input stream of current representation.
* @throws IOException if failed to get input stream.
*/
@Override
public InputStream getInputStream(@NotNull final Socket client) throws IOException {
return new AsciiInputStream(client.getInputStream());
}