You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2016/02/08 09:21:22 UTC

[4/4] mina-sshd git commit: Added clarification comment regarding the possibility the client channels may be associated with server sessions rather than client ones

Added clarification comment regarding the possibility the client channels may be associated with server sessions rather than client ones


Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/a3d058b0
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/a3d058b0
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/a3d058b0

Branch: refs/heads/master
Commit: a3d058b099fe2ee1aa34dd28e08308744a030530
Parents: fbce5f3
Author: Lyor Goldstein <lg...@vmware.com>
Authored: Mon Feb 8 10:21:06 2016 +0200
Committer: Lyor Goldstein <lg...@vmware.com>
Committed: Mon Feb 8 10:21:06 2016 +0200

----------------------------------------------------------------------
 .../java/org/apache/sshd/client/channel/ClientChannel.java    | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/a3d058b0/sshd-core/src/main/java/org/apache/sshd/client/channel/ClientChannel.java
----------------------------------------------------------------------
diff --git a/sshd-core/src/main/java/org/apache/sshd/client/channel/ClientChannel.java b/sshd-core/src/main/java/org/apache/sshd/client/channel/ClientChannel.java
index b3ffc44..c1e968c 100644
--- a/sshd-core/src/main/java/org/apache/sshd/client/channel/ClientChannel.java
+++ b/sshd-core/src/main/java/org/apache/sshd/client/channel/ClientChannel.java
@@ -31,9 +31,10 @@ import org.apache.sshd.common.io.IoInputStream;
 import org.apache.sshd.common.io.IoOutputStream;
 
 /**
- * A client channel used to communicate with
- * the SSH server.  Client channels can be shells,
- * simple commands or subsystems
+ * A client channel used to communicate with the SSH server.  Client channels can be shells,
+ * simple commands or subsystems. <B>Note:</B> client channels may be associated with a
+ * <U>server</U> session if they are opened by the server - e.g., for agent proxy, port
+ * forwarding, etc..
  *
  * @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
  */