This is an automated email from the ASF dual-hosted git repository. twolf pushed a commit to branch dev_3.0 in repository https://gitbox.apache.org/repos/asf/mina-sshd.git
commit 7d75e1a3ad4c1dd1cef30c211693387e74d053fe Author: Thomas Wolf <tw...@apache.org> AuthorDate: Fri Apr 11 18:57:08 2025 +0200 Fix typos in documentation --- CHANGES.md | 2 +- docs/technical/filters.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 3f60220f6..cc64e5550 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -17,4 +17,4 @@ Version 3 includes all the features and bug fixes of version 2, including the [l ## New Features * Random padding on SSH packets as suggested by [RFC 4253, section 6](https://datatracker.ietf.org/doc/html/rfc4253#section-6). -* New event callback `SessionListener.sessionStarting()`. See the [filter documentation](./docs/technical/filters.md). `SessionLIstener.sessionEstablished()` was removed; it was called from the constructor of `AbstractSession` at a time when the object was not yet fully initialized. \ No newline at end of file +* New event callback `SessionListener.sessionStarting()`. See the [filter documentation](./docs/technical/filters.md). `SessionListener.sessionEstablished()` was removed; it was called from the constructor of `AbstractSession` at a time when the object was not yet fully initialized. \ No newline at end of file diff --git a/docs/technical/filters.md b/docs/technical/filters.md index 1c4d2b122..28123d50f 100644 --- a/docs/technical/filters.md +++ b/docs/technical/filters.md @@ -23,7 +23,7 @@ SSH connections were handled in this one big messy class. An incoming message wo from the I/O transport directly to the session; where it would be decrypted, decompressed, and then handled. Outgoing messages (from either user authentication, or from the connection service, or also messages sent directly by the `AbstractSession` itself) would all go through -`AbstractSession.write()`, and the session would compress and encrypt them before handing handing +`AbstractSession.write()`, and the session would compress and encrypt them before handing them off to the I/O transport for sending over the socket. The session also dealt with all the intricacies of performing key exchanges. All this got more