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 1c0683e [SSHD-1060] Do not store logger level in fields new 36cddc4 [SSHD-1056] Modified ClientFactoryManager hierarchy to include ClientSessionCreator new 7374753 [SSHD-1056] Added configurable default auth/connect timeouts to client CLI sessions new 68f65a7 [SSHD-1056] Re-structure ScpRemote2RemoteTransferHelper to be more modular new d1c18fe [SSHD-1056] Add SCP remote-to-remote transfer of directories new 9fe278d [SSHD-1056] Added 3-way CLI option to SCP command The 5 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 | 3 +- docs/cli.md | 24 +- .../cli/client/CliClientModuleProperties.java} | 29 +- .../org/apache/sshd/cli/client/ScpCommandMain.java | 397 ++++++++++++++++----- .../sshd/cli/client/SshClientCliSupport.java | 8 +- .../apache/sshd/common/CommonModuleProperties.java | 3 +- .../org/apache/sshd/common/util/SelectorUtils.java | 39 +- ...herNameTest.java => PathsConcatentionTest.java} | 58 +-- .../apache/sshd/common/util/SelectorUtilsTest.java | 8 + .../apache/sshd/client/ClientFactoryManager.java | 2 + .../java/org/apache/sshd/client/SshClient.java | 7 +- .../sshd/client/session/ClientUserAuthService.java | 3 +- .../org/apache/sshd/core/CoreModuleProperties.java | 3 +- .../org/apache/sshd/scp/ScpModuleProperties.java | 2 +- .../java/org/apache/sshd/scp/client/ScpClient.java | 56 ++- .../scp/client/ScpRemote2RemoteTransferHelper.java | 357 ++++++++++++++---- .../client/ScpRemote2RemoteTransferListener.java | 37 ++ .../java/org/apache/sshd/scp/common/ScpHelper.java | 213 ++++++++--- .../org/apache/sshd/scp/common/ScpLocation.java | 141 ++++++-- .../apache/sshd/scp/common/helpers/ScpAckInfo.java | 130 +++++++ .../common/helpers/ScpDirEndCommandDetails.java | 14 + .../apache/sshd/scp/common/helpers/ScpIoUtils.java | 216 +---------- .../common/helpers/ScpTimestampCommandDetails.java | 2 +- .../org/apache/sshd/scp/server/ScpCommand.java | 12 +- .../java/org/apache/sshd/scp/server/ScpShell.java | 10 +- .../client/ScpRemote2RemoteTransferHelperTest.java | 221 +++++++++++- .../java/org/apache/sshd/scp/client/ScpTest.java | 23 +- .../sshd/scp/common/ScpLocationParsingTest.java | 63 ++-- .../org/apache/sshd/sftp/SftpModuleProperties.java | 2 +- 29 files changed, 1478 insertions(+), 605 deletions(-) copy sshd-cli/src/{test/java/org/apache/sshd/cli/client/SshKeyScanMainDevelopment.java => main/java/org/apache/sshd/cli/client/CliClientModuleProperties.java} (55%) copy sshd-common/src/test/java/org/apache/sshd/common/util/{security/SecurityProviderRegistrarCipherNameTest.java => PathsConcatentionTest.java} (56%) create mode 100644 sshd-scp/src/main/java/org/apache/sshd/scp/common/helpers/ScpAckInfo.java copy sshd-common/src/test/java/org/apache/sshd/common/PropertyResolverParseBooleanTest.java => sshd-scp/src/test/java/org/apache/sshd/scp/common/ScpLocationParsingTest.java (54%)