- 05 Apr, 2014 2 commits
-
-
Johannes Schindelin authored
Since we connected to the client through the repeater, chances are that we want this server shut down once the client disconnected. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
Johannes Schindelin authored
UltraVNC offers an add-on to connect clients and servers via IDs with a so-called repeater (e.g. to bridge firewalled clients and servers): http://www.uvnc.com/products/uvnc-repeater.html This example demonstrates how to use that feature with a LibVNCServer-based server. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 30 Mar, 2014 1 commit
-
-
Johannes Schindelin authored
We will change rfbClientCleanup() to free the data. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 26 Apr, 2012 1 commit
-
-
Christian Beier authored
-
- 09 Nov, 2011 1 commit
-
-
Christian Beier authored
-
- 25 Jul, 2011 1 commit
-
-
Christian Beier authored
-
- 23 Jul, 2011 5 commits
-
-
William Roberts authored
-
William Roberts authored
-
ckanru authored
without a touch screen. Because fake touch screen always report zero when query device information, coordinates transformation is not needed. Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
Christian Beier authored
LibVNCServer/LibVNCClient now build for Android!
-
Christian Beier authored
-
- 17 Mar, 2011 3 commits
-
-
Christian Beier authored
-
Christian Beier authored
-
Christian Beier authored
This fixes a segfault when a server is invoked with the '-help' commandline argument.
-
- 10 Mar, 2011 1 commit
-
-
Christian Beier authored
-
- 31 Jan, 2011 2 commits
-
-
Christian Beier authored
We have a git repo nowadays and I guess we won't go back to CVS. Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
Johannes Schindelin authored
If people seriously consider building with Visual Studio, there is always CMake. Pointed out by Christian Beier. Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 18 Nov, 2010 1 commit
-
-
Christian Beier authored
Adds automagically generating libvncserver/libvncclient API documentation using doxygen. This gives a nice overview on both APIs, include dependencies and function call/caller dependencies. TODO: Modify all the explaining comments in the .c files for use with doxygen as well. This patch only changes comments, no functional changes at all! Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
- 10 Nov, 2009 1 commit
-
-
Vic Lee authored
Signed-off-by:
Vic Lee <llyzs@163.com> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 03 Feb, 2009 1 commit
-
-
dscho authored
The flag handling (both compiler options and include paths) are a mess at the moment. There is no point in forcing "-O2 -g" when these are already the defaults, and if someone changes the defaults, chances are good they don't want you clobbering their choices. The -Wall flag should be handled in configure and thrown into CFLAGS once rather than every Makefile.am. Plus, this way we can control which compilers the flag actually gets used with. Finally, the INCLUDES variable is for -I paths, not AM_CFLAGS. Nor should it contain -I. as this is already in the default includes setup. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 13 May, 2008 1 commit
-
-
dscho authored
We cannot write access the frame buffer, and we do not have a sensible cursor anyway, so better disable the cursor (which would have to be drawn for clients that do not support CursorShapeUpdates). Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 30 Mar, 2007 1 commit
-
-
dscho authored
Thanks to Guillaume Rousse, we now use libtool to build shared libraries.
-
- 30 Apr, 2006 1 commit
-
-
dscho authored
-
- 27 Apr, 2006 2 commits
- 26 Apr, 2006 1 commit
-
-
runge authored
-
- 17 Apr, 2006 1 commit
-
-
steven_carr authored
-
- 01 Mar, 2006 2 commits
- 09 Jan, 2006 1 commit
-
-
runge authored
-
- 08 Jan, 2006 1 commit
-
-
runge authored
-
- 09 Dec, 2005 1 commit
-
-
dscho authored
-
- 08 Dec, 2005 1 commit
-
-
dscho authored
-
- 07 Oct, 2005 1 commit
-
-
dscho authored
If the client asked for an encoding, and no enabled extension handled it, LibVNCServer would walk through all extensions, and if they promised to handle the encoding, execute the extension's newClient() if it was not NULL. However, if newClient is not NULL, it will be called when a client connects, and if it returns TRUE, the extension will be enabled. Since all the state of the extension should be in the client data, there is no good reason why newClient should return FALSE the first time (thus not enabling the extension), but TRUE when called just before calling enablePseudoEncoding(). So in effect, the extension got enabled all the time, even if that was not necessary. The resolution is to pass a void** to enablePseudoEncoding. This has the further advantage that enablePseudoEncoding can remalloc() or free() the data without problems. Though keep in mind that if enablePseudoEncoding() is called on a not-yet-enabled extension, the passed data points to NULL.
-
- 06 Oct, 2005 3 commits
- 28 Sep, 2005 1 commit
-
-
dscho authored
Thank you very much, Rohit!
-
- 24 May, 2005 2 commits