Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | x11vnc: during speeds estimate, guard against client disconnecting. | runge | 2008-02-01 | 13 | -1734/+1680 |
| | |||||
* | Fix rfbSendSupportedEncodings | dscho | 2008-01-31 | 1 | -43/+32 |
| | | | | | | | | | There was a long standing TODO to make the counting of the supported encodings dynamic. It never triggered, until ZYWRLE was added. Noticed by Christian Ehrlicher. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Recurse into subdirectory x11vnc/ when configuring with --with-x11vnc | dscho | 2008-01-31 | 2 | -1/+6 |
| | | | | | | | | | | Since we separated the packages LibVNCServer and x11vnc, there is a configure switch --with-x11vnc, without which x11vnc is not built. However, even _with_ this switch, it is not built, because the Makefile would not recurse into the x11vnc/ subdirectory. Fix that. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Fix Swap16IfLE() on bytes | dscho | 2008-01-31 | 1 | -3/+3 |
| | | | | | | | | | | When swapping the values for the colour table to little-endian (because they are 16-bit values), we need to cast "unsigned char" to "unsigned short"; otherwise, Microsoft's compiler would keep complaining. Noticed by Christian Ehrlicher. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Move tightQualityLevel out of the JPEG specific part | dscho | 2008-01-31 | 2 | -3/+4 |
| | | | | | | | | The variable tightQualityLevel is used for ZYWRLE compression, too, so if libjpeg is not present, but libz is, we still need to have that struct member. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Make ZYWRLE thread-safe for multiple clients | dscho | 2008-01-30 | 3 | -17/+17 |
| | | | | | | | | ZYWRLE used a static buffer, which does not work too well if you have more than one client in a threaded server. Instead, we have the data in the client structure now. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | ZYWRLE brown paper bag fix | dscho | 2008-01-30 | 2 | -4/+6 |
| | | | | | | | | | | While adjusting the coding style, three stupid mistakes happened. The quality is _not_ just 1, 2, 3, but really 1, 3, 2. And the macros ZYWRLE_PACK_COEFF() and ZYWRLE_UNPACK_COEFF() expand to more than one statement, which means that we need curly brackets around them when they are in an if clause. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Update TODOs | dscho | 2008-01-29 | 1 | -5/+7 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Add a .gitignore file | dscho | 2008-01-29 | 1 | -0/+71 |
| | | | | | | | At least one developer (me) uses git to work on local branches, and this file does not hurt. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Add missing #include <time.h> (thanks Christian Ehrlicher) | dscho | 2008-01-29 | 2 | -0/+5 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Add ZYWRLE server-side support (thanks Noriaki Yamazaki, Hitachi) | dscho | 2008-01-29 | 8 | -25/+961 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | Add CMake support (thanks to Christian Ehrlicher) | dscho | 2008-01-29 | 6 | -3/+343 |
| | | | | Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | x11vnc: -ping option, fix memory corruption in copy_tiles after xrandr resize. | runge | 2008-01-15 | 9 | -56/+91 |
| | |||||
* | x11vnc: setup remote-ctrl file by default on macosx. improve | runge | 2007-12-16 | 11 | -35/+88 |
| | | | | tkx11vnc wrt attaching to existing server in icon/tray mode. | ||||
* | Fixes for MacOSX 10.5. Improve usage of x11 viewer on macosx. | runge | 2007-12-16 | 4 | -14/+638 |
| | |||||
* | x11vnc: fix find_display and usleep() prototype on macosx. | runge | 2007-12-16 | 9 | -28/+73 |
| | | | | | -display console and check DISPLAY /tmp/...:0 on macosx. implement -noxinerama. | ||||
* | x11vnc: add clear_locks (Caps_Lock, etc) action. | runge | 2007-11-13 | 14 | -1548/+1778 |
| | |||||
* | ssvnc sync: connect_br.tcl socks4/5 http proxies, ss_vncviewer socks5 proxy. ↵ | runge | 2007-10-27 | 4 | -513/+1457 |
| | | | | ssh 1st proxy. whatismyip.com fix. 127.0.0.1 on Darwin | ||||
* | ssl java and ss_vncviewer (socks5) sync. | runge | 2007-10-27 | 3 | -222/+607 |
| | |||||
* | x11vnc: -proxy, -ssh options. ncache bug in -8to24, Selection "targets" bugfix. | runge | 2007-10-27 | 26 | -2099/+3567 |
| | |||||
* | x11vnc: add xfce to createdisplay | runge | 2007-10-04 | 8 | -42/+53 |
| | |||||
* | x11vnc: COLUMNS=256 and other fixes to find/create scripts. More ratecheck. | runge | 2007-09-26 | 11 | -250/+533 |
| | |||||
* | Avoid misaligned access on 64-bit machines | dscho | 2007-09-17 | 1 | -13/+15 |
| | | | | | | | | | We used to assume that a char[256] is properly aligned to be cast to an rfbServerInitMsg, but that was not the case. So use a union instead. Noticed by Flavio Leitner. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> | ||||
* | update ss_vncviewer script, jars, and patch files. | runge | 2007-09-11 | 7 | -47/+138 |
| | |||||
* | ssvnc: sshvnc ssh-only, tsvnc Terminal Services modes. | runge | 2007-09-11 | 6 | -257/+2920 |
| | | | | | Improvements to ss_vncviewer. Automatically find X dpy and X login. Reorganize menus a bit. ~/.ssvncrc file. | ||||
* | x11vnc: fix wireframe crash under -clip. Add -redirect for | runge | 2007-09-11 | 18 | -1589/+2319 |
| | | | | | | | VNC redir. -rawfb nullbig, randbig, solid, swirl, etc. FD_XDM mode to find_display. -listdpy. Add enlightenment. Xvnc.redirect FINDDISPLAY-vnc_redirect. -xvnc, -xvnc_redirect, -svc_xvnc. AUTO_PORT. | ||||
* | x11vnc: -autoport, -finddpy, -xdummy. watch xrandr events. ↵ | runge | 2007-09-05 | 22 | -1907/+3434 |
| | | | | check_redir_services() utilities for Terminal services. Improve Xdummy. | ||||
* | classes/ssl: improve timeouts, port fallback, and connection time. | runge | 2007-09-05 | 11 | -31/+200 |
| | |||||
* | malloc score_hint and make it shorts to save space. | runge | 2007-08-19 | 4 | -11/+19 |
| | |||||
* | x11vnc: better -xkb tie-breaking for up keystrokes. Add Xsrv/FD_XSRV custom ↵ | runge | 2007-08-19 | 8 | -70/+273 |
| | | | | server to FINDCREATEDISPLAY list. | ||||
* | x11vnc: improve FINDCREATEDISPLAY (-create) script, FD_GEOM, FD_SESS, ↵ | runge | 2007-08-18 | 8 | -74/+170 |
| | | | | FD_OPTS, FD_PROG env vars, add Xvnc support | ||||
* | x11vnc: add reverse -connect support to -display WAIT:, fix SSL Fetch cert ↵ | runge | 2007-08-16 | 6 | -72/+201 |
| | | | | only for -display WAIT: | ||||
* | LibVNCClient: if the GotRect hook is set, override default op. | dscho | 2007-08-14 | 3 | -3/+7 |
| | |||||
* | x11vnc: -xrefresh, .DCOPserver bug, -unixpw_unsafe ignores SSH tunnel. | runge | 2007-08-04 | 13 | -88/+205 |
| | |||||
* | argv > 0 doesn't make sense for a pointer; assuming argv != NULL. | runge | 2007-08-04 | 1 | -1/+1 |
| | |||||
* | x11vnc: -debug_ncache, fix big fonts in tkx11vnc. | runge | 2007-07-05 | 13 | -1560/+1643 |
| | |||||
* | configure.ac check for external system libvncserver version. set x11vnc ↵ | runge | 2007-07-05 | 2 | -35/+78 |
| | | | | version 0.9.3 | ||||
* | x11vnc: set NCACHE -1 for release. | runge | 2007-06-18 | 4 | -14/+14 |
| | |||||
* | x11vnc: fix build error if libssl is missing or --without-ssl supplied. | runge | 2007-06-15 | 25 | -2535/+3702 |
| | |||||
* | sync ssvnc unix viewer diffs; fix X cursor size. | runge | 2007-05-27 | 1 | -108/+690 |
| | |||||
* | update java viewer and ssvnc. | runge | 2007-05-27 | 7 | -1203/+595 |
| | |||||
* | configure.ac: fix x11vnc --with-system-libvncserver build and add -R link flag. | runge | 2007-05-27 | 2 | -25/+43 |
| | |||||
* | Fix --libs, echo -n doesn't work everywhere. Question: why -R only for ↵ | runge | 2007-05-27 | 1 | -3/+5 |
| | | | | Solaris?? | ||||
* | clobbered x11vnc/Makefile.am by mistake. | runge | 2007-05-27 | 1 | -5/+9 |
| | |||||
* | configure: make more of a split between libvncserver and x11vnc pkgs. | runge | 2007-05-27 | 5 | -40/+112 |
| | |||||
* | x11vnc: in -unixpw, initial Escape means no echo username. | runge | 2007-05-26 | 8 | -102/+187 |
| | |||||
* | update regular SSL viewer jars; update ss_vncviewer script. | runge | 2007-05-22 | 3 | -0/+13 |
| | |||||
* | update ssvnc (SSVNC_EXTRA_SLEEP), and unix viewer (1/n menu and chat windows) | runge | 2007-05-22 | 3 | -354/+1906 |
| | |||||
* | x11vnc: set things up (NCACHE = -1) to not have -ncache on by default. | runge | 2007-05-22 | 7 | -13/+46 |
| | |||||
* | More fixes to ultra java viewer, ultrafilexfer debugging output, fix -loop ↵ | runge | 2007-05-19 | 10 | -60/+427 |
| | | | | in .x11vncrc case. |