if (remoteFile != null)
{
if (remoteFile.compressionInfo == null)
underliningStream = new LZFInputStream(socket.getInputStream());
else
underliningStream = new CompressedInputStream(socket.getInputStream(), remoteFile.compressionInfo);
}
else
{
underliningStream = null;
}