You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by gn...@apache.org on 2020/08/19 10:55:08 UTC

[mina-sshd] branch master updated (15f7224 -> 1c0683e)

This is an automated email from the ASF dual-hosted git repository.

gnodet pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/mina-sshd.git.


    from 15f7224  [SSHD-1035] A few minor improvements in Property code + documentation updates
     add ea29676  [SSHD-1058] Improve exception logging strategy
     add 1c0683e  [SSHD-1060] Do not store logger level in fields

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |   4 +-
 .../org/apache/sshd/cli/server/SshFsMounter.java   |   7 +-
 .../config/hosts/ConfigFileHostEntryResolver.java  |  10 +-
 .../config/keys/ClientIdentitiesWatcher.java       |   8 +-
 .../sshd/common/future/AbstractSshFuture.java      |  11 +-
 .../AbstractResourceKeyPairProvider.java           |   6 +-
 .../common/util/logging/AbstractLoggingBean.java   |  90 ++++++++++-
 .../sshd/common/util/logging/LoggingUtils.java     | 175 +++++++++++++++++++++
 .../AbstractGeneratorHostKeyProvider.java          |  36 ++---
 .../channel/throttle/ThrottlingPacketWriter.java   |   6 +-
 .../sshd/agent/common/AbstractAgentClient.java     |   9 +-
 .../agent/common/DefaultAgentForwardSupport.java   |   7 +-
 .../apache/sshd/agent/unix/AgentServerProxy.java   |   9 +-
 .../java/org/apache/sshd/client/SshClient.java     |  15 +-
 .../auth/keyboard/UserAuthKeyboardInteractive.java |   8 +-
 .../client/auth/password/UserAuthPassword.java     |   9 +-
 .../sshd/client/auth/pubkey/UserAuthPublicKey.java |  42 ++---
 .../apache/sshd/client/channel/ChannelSession.java |  14 +-
 .../client/channel/PtyCapableChannelSession.java   |   9 +-
 .../exit/AbstractChannelExitRequestHandler.java    |   9 +-
 .../sshd/client/future/DefaultConnectFuture.java   |   2 +-
 .../keyverifier/KnownHostsServerKeyVerifier.java   |  50 ++----
 .../sshd/client/session/AbstractClientSession.java |  17 +-
 .../client/session/ClientConnectionService.java    |   8 +-
 .../sshd/client/session/ClientUserAuthService.java |   8 +-
 .../sshd/common/channel/AbstractChannel.java       |  78 ++-------
 .../common/channel/BufferedIoOutputStream.java     |   7 +-
 .../common/channel/ChannelAsyncInputStream.java    |   2 +-
 .../common/channel/ChannelAsyncOutputStream.java   |  16 +-
 .../sshd/common/channel/ChannelOutputStream.java   |  12 +-
 .../sshd/common/forward/DefaultForwarder.java      |  32 ++--
 .../sshd/common/forward/TcpipClientChannel.java    |   9 +-
 .../apache/sshd/common/io/nio2/Nio2Acceptor.java   |  23 +--
 .../apache/sshd/common/io/nio2/Nio2Connector.java  |  18 +--
 .../apache/sshd/common/io/nio2/Nio2Service.java    |   8 +-
 .../sshd/common/io/nio2/Nio2ServiceFactory.java    |   5 +-
 .../apache/sshd/common/io/nio2/Nio2Session.java    |  70 +++------
 .../session/helpers/AbstractConnectionService.java |  22 +--
 .../common/session/helpers/AbstractSession.java    |  29 +---
 .../session/helpers/AbstractSessionIoHandler.java  |   7 +-
 .../sshd/common/session/helpers/SessionHelper.java | 122 +++-----------
 .../session/helpers/SessionTimeoutListener.java    |  16 +-
 .../server/auth/hostbased/UserAuthHostBased.java   |   8 +-
 .../DefaultKeyboardInteractiveAuthenticator.java   |   8 +-
 .../auth/keyboard/UserAuthKeyboardInteractive.java |  14 +-
 .../server/auth/password/UserAuthPassword.java     |   8 +-
 .../auth/pubkey/CachingPublicKeyAuthenticator.java |   8 +-
 .../sshd/server/auth/pubkey/UserAuthPublicKey.java |   8 +-
 .../apache/sshd/server/channel/ChannelSession.java |  70 ++-------
 .../config/keys/AuthorizedKeysAuthenticator.java   |  10 +-
 .../sshd/server/forward/TcpipServerChannel.java    |  27 +---
 .../sshd/server/global/OpenSshHostKeysHandler.java |   8 +-
 .../server/jaas/JaasPasswordAuthenticator.java     |   7 +-
 .../sshd/server/session/AbstractServerSession.java |  35 ++---
 .../sshd/server/session/ServerUserAuthService.java |  52 ++----
 .../sshd/server/shell/InvertedShellWrapper.java    |  21 +--
 .../org/apache/sshd/server/shell/ProcessShell.java |  23 +--
 .../sshd/server/x11/DefaultX11ForwardSupport.java  |  15 +-
 .../apache/sshd/util/test/TestChannelListener.java |   5 +-
 .../sshd/ldap/LdapPasswordAuthenticator.java       |   8 +-
 .../sshd/ldap/LdapPublickeyAuthenticator.java      |   9 +-
 .../java/org/apache/sshd/mina/MinaAcceptor.java    |   8 +-
 .../java/org/apache/sshd/mina/MinaConnector.java   |   8 +-
 .../org/apache/sshd/netty/NettyIoAcceptor.java     |   8 +-
 .../sshd/openpgp/PGPAuthorizedEntriesTracker.java  |   9 +-
 .../sshd/scp/client/SimpleScpClientImpl.java       |  10 +-
 .../org/apache/sshd/scp/server/ScpCommand.java     |  14 +-
 .../sftp/client/fs/SftpFileSystemProvider.java     |  13 +-
 .../sshd/sftp/client/impl/AbstractSftpClient.java  |   2 +-
 .../sftp/client/impl/DefaultSftpClientFactory.java |  10 +-
 .../sftp/client/impl/SftpDirEntryIterator.java     |   8 +-
 .../sftp/client/impl/SimpleSftpClientImpl.java     |  28 +---
 .../sftp/server/AbstractSftpSubsystemHelper.java   |  26 +--
 .../org/apache/sshd/sftp/server/SftpSubsystem.java |  14 +-
 74 files changed, 593 insertions(+), 954 deletions(-)