This is an automated email from the ASF dual-hosted git repository.
lgoldstein pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.
from 4cee648 Some minor code-style modifications to SFTP test code
new ba6ef50 [SSHD-882] Added hooks to allow users to capture and handle
extended (STDERR) data sent via the ChannelSession
new aa8f1e8 Exclude RemoteSystemsTempFiles from assembly artifacts
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGES.md | 5 +
README.md | 14 +++
assembly/src/main/descriptors/unix-src.xml | 2 +
assembly/src/main/descriptors/windows-src.xml | 2 +
.../org/apache/sshd/common/util/io/IoUtils.java | 21 ++++
.../sshd/common/util/io/LineOutputStream.java | 122 ++++++++++++++++++++
.../sshd/common/util/io/LineOutputStreamTest.java | 123 +++++++++++++++++++++
.../sshd/server/channel/ChannelDataReceiver.java | 11 +-
.../apache/sshd/server/channel/ChannelSession.java | 90 ++++++++++++---
.../sshd/server/subsystem/sftp/SftpSubsystem.java | 5 +
10 files changed, 371 insertions(+), 24 deletions(-)
create mode 100644
sshd-contrib/src/main/java/org/apache/sshd/common/util/io/LineOutputStream.java
create mode 100644
sshd-contrib/src/test/java/org/apache/sshd/common/util/io/LineOutputStreamTest.java