summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* configure.ac: fix x11vnc --with-system-libvncserver build and add -R link flag.runge2007-05-272-25/+43
|
* Fix --libs, echo -n doesn't work everywhere. Question: why -R only for ↵runge2007-05-271-3/+5
| | | | Solaris??
* clobbered x11vnc/Makefile.am by mistake.runge2007-05-271-5/+9
|
* configure: make more of a split between libvncserver and x11vnc pkgs.runge2007-05-275-40/+112
|
* x11vnc: in -unixpw, initial Escape means no echo username.runge2007-05-268-102/+187
|
* update regular SSL viewer jars; update ss_vncviewer script.runge2007-05-223-0/+13
|
* update ssvnc (SSVNC_EXTRA_SLEEP), and unix viewer (1/n menu and chat windows)runge2007-05-223-354/+1906
|
* x11vnc: set things up (NCACHE = -1) to not have -ncache on by default.runge2007-05-227-13/+46
|
* More fixes to ultra java viewer, ultrafilexfer debugging output, fix -loop ↵runge2007-05-1910-60/+427
| | | | in .x11vncrc case.
* Pre-C99 declaration error.runge2007-05-171-2/+2
|
* In rfbSendFileTransferChunk() check permitFileTransfer 1st to avoid false ↵runge2007-05-171-3/+4
| | | | alarms.
* Add UltraViewerSSL.jar, etc. to dist list.runge2007-05-161-1/+1
|
* Add logging output to know when inside tightvnc-filetransfer functions.runge2007-05-162-1/+18
|
* Add SSL support to UltraVNC Java Viewer (has filetransfer gui). Fix ↵runge2007-05-1611-59/+2593
| | | | UltraVNC bugs and improve FTP gui a bit.
* ssvnc: SOCKS support, PORT=, Verify all Certs and accepted certs logging. ↵runge2007-05-169-1578/+2385
| | | | x11vnc SSL debugging output.
* Drop client if UltraVNC filetransfer is not enabled.runge2007-05-161-3/+33
|
* ssvnc: Home dir changing, skip enc warning, memory stick doc.runge2007-05-074-31/+193
|
* x11vnc: lower -wait and -defer to 20ms. Drop client doing ultravnc stuff in ↵runge2007-05-077-61/+192
| | | | -unixpw during login phase.
* filexfer warnings and messages.runge2007-05-059-34/+98
|
* x11vnc: add groups handling for -users mode.runge2007-05-0511-46/+220
|
* x11vnc: add WAITBG=1 env. var, add mwm to -create.runge2007-05-046-440/+554
|
* ssl: java viewer patches, onetimekey; x11vnc setsid/setpgrp and -cc 4 for ↵runge2007-05-0115-1466/+1680
| | | | -create
* x11vnc: -users sslpeer= option. RFB_SSL_CLIENT_CERT, -ncache 10 defaultrunge2007-04-2821-887/+789
|
* x11vnc: set to next release (0.9.1)runge2007-04-195-49/+258
|
* Add latest vncviewer patch.runge2007-04-191-142/+192
|
* Sync with SSVNC 1.0.15runge2007-04-195-34/+291
|
* x11vnc: small changes for 0.9 release.runge2007-04-185-283/+90
|
* change x11vnc version to 0.9runge2007-04-081-1/+1
|
* prepare for release of LibVNCServer 0.9dscho2007-04-071-2/+2
|
* x11vnc: add gnome, kde, etc. FINDCREATEDISPLAY tags.runge2007-04-077-17/+72
|
* update viewer jars and ss scriptrunge2007-04-074-18/+69
|
* java ingoreProxy, fix old libssl free_func problemrunge2007-04-079-1419/+1478
|
* rfbclient.h: use 'extern "C"' to make it convenient to include from C++dscho2007-04-063-2/+15
|
* rfb.h: Do not misplace guardsdscho2007-04-063-2/+9
| | | | This buglet made it impossible to double include rfb.h from C++.
* build x11vnc with static libraries (at least for now)dscho2007-03-301-1/+17
| | | | | | | Maybe at a later stage, we want x11vnc to pick up on existing libvncserver.so and libvncclient.so, but right now, x11vnc and the libraries progress together (and thus it is better to build static, necessarily up-to-date libraries for x11vnc).
* Build shared libraries per defaultdscho2007-03-3013-13/+13275
| | | | Thanks to Guillaume Rousse, we now use libtool to build shared libraries.
* x11vnc: remove build errors, get -ncache working on macosx again.runge2007-03-256-1280/+1292
|
* Fix short vs. char problem with X cursors. Have fg == bg == 0 imply ↵runge2007-03-241-7/+51
| | | | interpolation to B&W.
* reverse connections for ss_vncviewer. java one-time-keys.runge2007-03-244-41/+385
|
* x11vnc: reverse SSL connections. -sleepin option.runge2007-03-2413-1470/+1596
|
* reverse (listening) VNC connections.runge2007-03-245-132/+848
|
* ssvnc: sync to 1.0.13 release.runge2007-03-206-39/+150
|
* x11vnc: -httpsredir, x11cursor fix, nc=N login opt, no -ncache betatest for ↵runge2007-03-2012-199/+511
| | | | java viewer.
* Add "Connection: close" to HTTP replies.runge2007-03-202-2/+18
|
* Fix a locking problem in libvncserverdscho2007-03-174-4/+6
| | | | | | | | | | | | | | | | | | | 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 <[email protected]>
* ssvnc: sync src/patches/tight-vncviewer-full.patchrunge2007-03-131-119/+636
|
* x11vnc: fix crash for kde dcop. limit ncache beta tester to 96MB viewers.runge2007-03-139-959/+1271
|
* ssvnc: more fixes for painting problems.runge2007-02-195-543/+105
|
* x11vnc: fix -users bob= in -inetd mode.runge2007-02-194-492/+518
|
* store 1.0.12 snapshot.runge2007-02-197-599/+7028
|