[X2Go-Commits] python-x2go.git - build-baikal (branch) updated: 0.1.1.4-40-g0cebec3

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


The branch, build-baikal has been updated
       via  0cebec3a37eb7351bccee8d25afd09bc2a40f398 (commit)
      from  bec5751cd01a29fa3fbfeb3b684aceaea41097a3 (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:
 debian/changelog |    2 ++
 x2go/forward.py  |    3 +++
 2 files changed, 5 insertions(+)

The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 701911a..dea0626 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 python-x2go (0.1.2.0-0~x2go1) UNRELEASED; urgency=low
 
   * License change upstream: GPLv3+ -> AGPLv3+
+  * 
 
  -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de>  Mon, 18 Jul 2011 13:51:09 +0200
 
@@ -13,6 +14,7 @@ python-x2go (0.1.1.7-0-x2go1) UNRELEASED; urgency=low
       all folders, return exitcode from X2goTerminalSessionSTDOUT.unshare_*
       methods.
     - Use TCP_NODELAY socket option for audio rev forwarding tunnels.
+    - Use TCP_NODELAY socket option for graphics forwarding tunnels.
 
   [ Dick Kniep ]
   * Fix for upstream version 0.1.1.7:
diff --git a/x2go/forward.py b/x2go/forward.py
index 161a49e..a9b5894 100644
--- a/x2go/forward.py
+++ b/x2go/forward.py
@@ -94,6 +94,9 @@ class X2goFwServer(StreamServer):
         """
         self.fw_socket = fw_socket
 
+        # disable Nagle algorithm in TCP/IP protocol
+        self.fw_socket.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
+
         _success = False
         _count = 0
         _maxwait = 20


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