Commit Graph

189 Commits (c240011951ba0c769353695699ee8a3172edb7b0)

Author SHA1 Message Date
Christian Beier 8415ff4c35
Update ChangeLog. 8 years ago
Stefan Weil 9c7efb7633 Fix some typos (found by codespell)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
9 years ago
Christian Beier d8bc98386a Update ChangeLog for 0.9.10. 10 years ago
Christian Beier 7bac05aeed Update ChangeLog for 0.9.9. 13 years ago
Christian Beier 14c8943c92 Update ChangeLog for 0.9.8.1. 13 years ago
Christian Beier f25a886cba Update ChangeLog for 0.9.8. 14 years ago
runge a29e42e515 libvncclient: rfbResizeFrameBuffer should also set updateRect. 15 years ago
runge c15b6165ab tightvnc-filetransfer/rfbtightserver.c: enabled fix
for tight security type for RFB 3.8 (debian bug 517422.)
15 years ago
runge 804335f9d2 Thread safety for zrle, zlib, tight.
Proposed tight security type fix for debian bug 517422.
16 years ago
dscho e2874d343a Teach SDLvncviewer about scroll wheel events
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho ebe79c28c3 Clipboard support for SDLvncviewer
The clipboard support has only been tested on Linux so far.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho eb1cc7608b SDLvncviewer: upon focus loss, force releasing the Alt keys
When switching windows using the Alt+Tab shortcut, SDLvncviewer would
get the "down" event, but not the "up" event.  This patch provides
a workaround.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho a02607fe35 Teach SDLvncviewer to be resizable
Using "SDLvncviewer -resizable", you make the window resizable.  This
means that you can shrink the window (e.g. when you are trying to access
an x11vnc from your little netbook), or you can enlarge it.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho 3ab7d5d766 SDLvncviewer: enable key repeat
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho b0c272e723 Record Mike's automake cleanups
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
runge effe81e36a configure.ac, CMakeLists.txt: set LibVNCServer version to 0.9.7 16 years ago
runge 8d55891ded Forgot ChangeLog 16 years ago
dscho a824cf443d SDLvncviewer: update screen correctly after a resize
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho c04a28f306 Please MS Visual C++ a bit (Christian Ehrlicher)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho 26b79b89db ZYWRLE patch for libvncclient (thanks Noriaki Yamazaki)
Highlite:
 * use qualityLevel/zlib_buffer. No new variable is needed.
 * Change coding style to recursive fashion.
 * Change meaning of qualityLevel== 9 for easy calc zywrle_level:
     old:zywrle_level== 1
     new:disable ZYWRLE(same as ZRLE)
   so, we should not use this value for compatible reason.
 * Color mode handling isn't complete.
   I provided and checked 16 bit colors(RGB555,RGB565) and
   some color mode of 32 bit colors for little endian mode.
   we must make and check 24 bit colors and big endian mode.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho befcb6fc14 Fix ZYWRLE en/decoding for width != scanline (thanks Noriaki Yamazaki)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho e526c4816b SDLvncviewer: fix button handling
For some reason, I swapped buttons 2 and 3 on Dec 7, 2005, in commit
"translate keys based on unicode (much more reliable than sym)".
I do not remember why, nor what I smoked, but this was wrong.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho 87fa3452c1 Add missing #include <time.h> (thanks Christian Ehrlicher)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho 059afcdf81 Add ZYWRLE server-side support (thanks Noriaki Yamazaki, Hitachi)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho 09d902c5b7 Add CMake support (thanks to Christian Ehrlicher)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
runge e305525129 classes/ssl: improve timeouts, port fallback, and connection time. 18 years ago
dscho eb2eeed97e LibVNCClient: if the GotRect hook is set, override default op. 18 years ago
runge d3326942e2 x11vnc: fix build error if libssl is missing or --without-ssl supplied. 18 years ago
runge dd193b1335 configure: make more of a split between libvncserver and x11vnc pkgs. 18 years ago
dscho 26b291bf25 rfbclient.h: use 'extern "C"' to make it convenient to include from C++ 18 years ago
dscho 1060f747be rfb.h: Do not misplace guards
This buglet made it impossible to double include rfb.h from C++.
18 years ago
dscho ca805667e6 Build shared libraries per default
Thanks to Guillaume Rousse, we now use libtool to build shared libraries.
18 years ago
runge f57eb8742f Add "Connection: close" to HTTP replies. 18 years ago
dscho 61cd498fb2 Fix a locking problem in libvncserver
There seems to be a locking problem in libvncserver, with respect to how
condition variables are used.

On certain machines in our lab, when using a vncviewer to view a display
that has a very high rate of updates, we will occasionally see the VNC
server process crash.  In one stack trace that was obtained, an assertion
had tripped in glibc's pthread_cond_wait, which was called from
clientOutput.

Inspection of clientOutput suggests that WAIT is being called incorrectly.
The mutex that protects a condition variable should always be locked when
calling wait, and on return from the wait will still be locked.  The
attached patch fixes the locking around this condition variable, and one
other that I found by grepping the source for similar occurrences.

Signed-off-by: Charles Coffing <ccoffing@novell.com>
18 years ago
dscho 14b290384a LibVNCClient: some users do not want to get whole-screen updates; introduce client->updateRect for that 18 years ago
runge c1b4a3b996 libvncclient changes. 18 years ago
runge f925d1ec9f Remove stray "-permitfiletransfer permit file transfer support" output 18 years ago
runge 27a884d2f3 x11vnc: Mac OS X fb fixes and cuttext, -nodpms option, local user wireframing 19 years ago
runge 4a83f87609 x11vnc: Native Mac OS X support. 19 years ago
runge 2635ae4407 configure.ac -R and macosx, prepare_x11vnc_dist.sh rpm fix 19 years ago
runge 901729e3e0 x11vnc: enable --without-x builds for -rawfb only binaries. 19 years ago
runge 6facce2c5c LibVNCServer 0.8.2 release. 19 years ago
runge 079528470d x11vnc: add uinput support for full input into linux fb device (e.g. qt-embed). 19 years ago
runge a7726a6f97 x11vnc: more -unixpw work. add -license, etc. options 19 years ago
runge 1776a3a55f x11vnc: -display WAIT:..., -users unixpw=, su_verify dpy command. 19 years ago
steven_carr 6c8e6e0678 Identified and removed some memory leaks associated with the Encodings RRE, CoRRE, ZLIB, and Ultra.
KeyboardLedState now has portable masks defined.
rfb >= 3.7 Security Type Handler list would grow 1 entry for each new client connection.
19 years ago
steven_carr b5ab72d65f Statistics now fit into 80-column output 19 years ago
steven_carr 1c3af68549 Default to RFB 3.8, add command line option to specify the RFB version. 19 years ago
steven_carr ccdbe8f325 The great UltraVNC Compatibility Commit 19 years ago
runge 347c4a9847 fix some build issues WRT ultravnc code. 19 years ago