Skip to content

Commit

Permalink
no biggie if we don't send EOF on ChannelOutputStream.close()
Browse files Browse the repository at this point in the history
  • Loading branch information
shikhar committed Jun 25, 2014
1 parent 5ee2f0a commit d955865
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public synchronized void close()
if (!closed) {
try {
buffer.flush(false);
trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
// trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
} finally {
closed = true;
}
Expand Down

0 comments on commit d955865

Please sign in to comment.