Skip to content

Commit

Permalink
indentation corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
jpstotz committed Jan 22, 2020
1 parent 555d5d2 commit 6fa1d70
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,15 @@ public synchronized void close() throws IOException {
}
}

/**
* Allows to send the {@link Message#CHANNEL_EOF}. This can be useful for
* example to close stdin of a remote process.
*
* @throws TransportException
*/
public void sendChannelEOF() throws TransportException {
trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
}
/**
* Allows to send the {@link Message#CHANNEL_EOF}. This can be useful for
* example to close stdin of a remote process.
*
* @throws TransportException
*/
public void sendChannelEOF() throws TransportException {
trans.write(new SSHPacket(Message.CHANNEL_EOF).putUInt32(chan.getRecipient()));
}

/**
* Send all data currently buffered. If window space is exhausted in the process, this will block
Expand Down

0 comments on commit 6fa1d70

Please sign in to comment.