[X2Go-Commits] python-x2go.git - build-baikal (branch) updated: 0.2.0.10-55-g8439aa2

X2Go dev team git-admin at x2go.org
Wed Jan 8 15:29:26 CET 2014


The branch, build-baikal has been updated
       via  8439aa2b9b670c6c3b35fb9cf6908b5ce19e03de (commit)
      from  6365a4cb5d05e7eb2630b0a26c6e91dbdb2a2123 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 x2go/forward.py |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

The diff of changes is:
diff --git a/x2go/forward.py b/x2go/forward.py
index e06323a..f626efc 100644
--- a/x2go/forward.py
+++ b/x2go/forward.py
@@ -223,6 +223,7 @@ def start_forward_tunnel(local_host='127.0.0.1', local_port=22022,
                          remote_host='127.0.0.1', remote_port=22,
                          ssh_transport=None, 
                          session_instance=None,
+                         session_name=None,
                          logger=None, ):
     """\
     Setup up a Paramiko/SSH port forwarding tunnel (like openssh -L option).
@@ -241,6 +242,8 @@ def start_forward_tunnel(local_host='127.0.0.1', local_port=22022,
     @type ssh_transport: C{obj}
     @param session_instance: the L{X2goSession} instance that initiates this tunnel
     @type session_instance: C{obj}
+    @param session_name: the session name of the X2Go session this port forwarding server belongs to
+    @type session_name: C{str}
     @param logger: an X2goLogger object
     @type logger: C{obj}
 
@@ -250,7 +253,8 @@ def start_forward_tunnel(local_host='127.0.0.1', local_port=22022,
     """
     fw_server = X2goFwServer(listener=(local_host, local_port),
                              remote_host=remote_host, remote_port=remote_port,
-                             ssh_transport=ssh_transport, session_instance=session_instance,
+                             ssh_transport=ssh_transport,
+                             session_instance=session_instance, session_name=session_name,
                              logger=logger,
                             )
     try:


hooks/post-receive
-- 
python-x2go.git (Python X2Go Client API)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-x2go.git" (Python X2Go Client API).




More information about the x2go-commits mailing list