- 26 Jan, 2010 1 commit
-
-
Peter Arrenbrecht authored
Seems there is a buffer overflow in x11vnc's tightvnc-filetransfer code when compiling to 64 bits: a buffer is allocated using sizeof(int) for the size, but then, data is copied into it using sizeof(unsigned long). Detected by GCC build with full warnings. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 25 Jan, 2010 1 commit
-
-
Christian Beier authored
The serverPort member is already set in rfbGetClient(), if we set it again in rfbInitClient(), this breaks playing of vncrec files (this relies on serverPort set to -1). Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 16 Jan, 2010 2 commits
-
-
Johannes Schindelin authored
While at it, adjust coding style. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Vic Lee authored
[jes: adjusted coding style, made sure port is initialized correctly] Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 08 Jan, 2010 1 commit
-
-
runge authored
-
- 07 Jan, 2010 2 commits
-
-
Christian Beier authored
In some cases (bad font data) the coordinates evaluate to <0, causing a segfault in the following memcpy(). [jes: keep the offset, but do not try to segfault] Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Christian Beier authored
Issue was reported as Debian bug ##555988, http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=555988Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 04 Jan, 2010 1 commit
-
-
Christian Beier authored
This fixes Debian Bug #399501: Switch to tty1. Run "linuxvnc 1 -help". You see help text, followed by "Segmentation fault". Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 03 Jan, 2010 4 commits
-
-
runge authored
x11vnc: small tweaks to Xdummy, rx11vnc*. Apply SMALL_FOOTPRINT to -appshare text. Copyright year change.
-
runge authored
-
runge authored
Merge branch 'master' of ssh://runge@libvncserver.git.sourceforge.net/gitroot/libvncserver/libvncserver
-
runge authored
for tight security type for RFB 3.8 (debian bug 517422.)
-
- 01 Jan, 2010 1 commit
-
-
Vic Lee authored
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 30 Dec, 2009 1 commit
-
-
runge authored
-
- 28 Dec, 2009 1 commit
-
-
runge authored
with -QD query for dbus info. Adjust window size for small screens in -gui. Improve F1 help for xdm, etc. include ssvnc 1.0.25 source.
-
- 24 Dec, 2009 2 commits
-
-
runge authored
Merge branch 'master' of ssh://runge@libvncserver.git.sourceforge.net/gitroot/libvncserver/libvncserver
-
runge authored
-svc_xdummy_xvfb and -create_x shorthand. lxde session. Xdummy improvements and root no longer required.
-
- 22 Dec, 2009 1 commit
-
-
Vic Lee authored
It seems that vino does not send AuthOK when there is no password with anonymous TLS, and it seems that vino is the only <3.8 VNC server that handles anonymous TLS at all, so let's not wait for the packet that will never come. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 21 Dec, 2009 1 commit
-
-
runge authored
have ssl. Tweak ps command in find_display. Try to handle AIX su. Ignore an initial newline at login: for -unixpw.
-
- 19 Dec, 2009 2 commits
- 18 Dec, 2009 1 commit
-
-
runge authored
DIRECT: with an extra XFlush and other safety measures. fflush(stderr) much in su_verify. Make the -unixpw env. vars UNIXPW_DISABLE_SSL and UNIXPW_DISABLE_LOCALHOST work correctly. Make -loopbg actually imply -bg.
-
- 15 Dec, 2009 1 commit
-
-
runge authored
ultravnc_repeater.pl scripts, find_display try FD_XDM on failure, -quiet and -storepasswd changes, better port 113 testing.
-
- 07 Dec, 2009 1 commit
-
-
runge authored
-findauth/-auth guess FD_XDM=1 for root, work around xhost SI:localuser:root.
-
- 05 Dec, 2009 1 commit
-
-
runge authored
-
- 03 Dec, 2009 1 commit
-
-
runge authored
entire desktop. map port + 5500 in reverse connect. Add id_cmd remote control functions for id (and other) windows. Allow zero port in SSL reverse connections. Adjust delays between multiple reverse connections; X11VNC_REVERSE_SLEEP_MAX env var. Add some missing mutex locks; add INPUT_LOCK and threads_drop_input. More safety in -threads mode for new framebuffer change. Fix some stderr leaking in -inetd mode.
-
- 02 Dec, 2009 1 commit
-
-
runge authored
rfbSetClientColourMap(). Up listen limit from 5 to 32.
-
- 18 Nov, 2009 2 commits
- 12 Nov, 2009 1 commit
-
-
Christian Beier authored
The return value now better reflects what has happened: 1 on success (incoming connection on listen socket, we accepted it successfully), -1 on error, 0 on timeout. Also change the select calls to not check _all_ possible file descriptors. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 11 Nov, 2009 1 commit
-
-
Christian Beier authored
To make this work, we also have to initialize sockets to a default value of -1. Also close a client listen socket if it's open. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 10 Nov, 2009 3 commits
-
-
Christian Beier authored
fixes warning about closesocket being implicitly declared. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Vic Lee authored
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Vic Lee authored
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 02 Nov, 2009 2 commits
-
-
Johannes Schindelin authored
-
Vic Lee authored
Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 31 Oct, 2009 2 commits
-
-
Johannes Schindelin authored
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Christian Beier authored
If rfbInitConnection fails, it cleans up the client, so protect against doing it ourselves again. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 30 Oct, 2009 2 commits
-
-
Christian Beier authored
Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-
Christian Beier authored
As -listen mode isn't really working under UNIX and not at all under windows, use -listennofork and an outer listen loop instead. Signed-off-by: Christian Beier <dontmind@freeshell.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
-