1. 22 9月, 2014 21 次提交
  2. 20 9月, 2014 2 次提交
  3. 19 9月, 2014 15 次提交
  4. 18 9月, 2014 1 次提交
  5. 17 9月, 2014 1 次提交
    • P
      ui/vnc: set TCP_NODELAY · 86152436
      Peter Lieven 提交于
      we currently have the Nagle algorithm enabled for all outgoing VNC updates.
      This may delay sensitive updates as mouse movements or typing in the console.
      As we currently prepare all data in a buffer and then send as much as we can
      disabling the Nagle algorithm should not cause big trouble. Well established
      VNC servers like TightVNC set TCP_NODELAY as well.
      A regular framebuffer update request generates exactly one framebuffer update
      which should be pushed out as fast as possible.
      Signed-off-by: NPeter Lieven <pl@kamp.de>
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      86152436