Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | x11vnc: -8to24 opts, use XGetSubImage. fix -threads deadlocks and -rawfb crash | runge | 2006-01-22 | 16 | -159/+310 |
| | |||||
* | x11vnc: -8to24 now works on default depth 8 displays. | runge | 2006-01-19 | 13 | -873/+1240 |
| | |||||
* | x11vnc: more tweaks to -8to24 XGETIMAGE_8TO24 | runge | 2006-01-16 | 7 | -858/+1074 |
| | |||||
* | x11vnc: add -8to24 option for some multi-depth displays. | runge | 2006-01-15 | 23 | -540/+1639 |
| | |||||
* | configure.ac: add switches for most X extensions. | runge | 2006-01-12 | 7 | -37/+81 |
| | |||||
* | logMutex needs to be initialized too; in rfbDefaultLog. | runge | 2006-01-11 | 5 | -713/+727 |
| | |||||
* | x11vnc: close fd > 2 in run_user_command(), -nocmds in crash_debug, fix ↵ | runge | 2006-01-11 | 17 | -31/+68 |
| | | | | 64bit bug for -solid. | ||||
* | rfbProcessEvents() has to iterate also over clients with sock < 0 to close them | dscho | 2006-01-10 | 3 | -3/+24 |
| | |||||
* | x11vnc: the big split. | runge | 2006-01-09 | 69 | -32423/+34376 |
| | |||||
* | fix client non-jpeg/libz builds | runge | 2006-01-08 | 4 | -4/+14 |
| | |||||
* | rfbRegisterProtocolExtension extMutex was never initialized. | runge | 2006-01-06 | 2 | -0/+10 |
| | |||||
* | x11vnc: enhance -passwdfile features, filetransfer on by default. | runge | 2005-12-24 | 5 | -103/+312 |
| | |||||
* | make compile again with pthreads; fix off-by-one error | dscho | 2005-12-22 | 1 | -2/+4 |
| | |||||
* | introduce -deferptrupdate (thanks Dave) | dscho | 2005-12-19 | 6 | -5/+60 |
| | |||||
* | assorted fixes for MinGW32 | dscho | 2005-12-19 | 6 | -19/+24 |
| | |||||
* | work around write() returning ENOENT on Solaris 2.7 | dscho | 2005-12-09 | 4 | -1/+20 |
| | |||||
* | previous patch turned compile warning in a compile error; fix that ;-) | dscho | 2005-12-09 | 1 | -1/+1 |
| | |||||
* | fix compile warnings | dscho | 2005-12-08 | 1 | -3/+5 |
| | |||||
* | one more memory leak | dscho | 2005-12-07 | 1 | -0/+5 |
| | |||||
* | plug memory leaks | dscho | 2005-12-07 | 3 | -2/+25 |
| | |||||
* | translate keys based on unicode (much more reliable than sym) | dscho | 2005-12-07 | 1 | -142/+88 |
| | |||||
* | x11vnc: add -loop option. | runge | 2005-11-28 | 5 | -742/+915 |
| | |||||
* | fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg ↵ | runge | 2005-11-25 | 19 | -35/+177 |
| | | | | builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place. | ||||
* | configure.ac: test ... == ... not allowed on all unix. | runge | 2005-10-23 | 2 | -3/+3 |
| | |||||
* | x11vnc: -filexfer, -slow_fb, -blackout noptr,... | runge | 2005-10-23 | 7 | -952/+1483 |
| | |||||
* | update TODO | dscho | 2005-10-07 | 1 | -1/+2 |
| | |||||
* | The PseudoEncoding extension code was getting silly: | dscho | 2005-10-07 | 3 | -6/+4 |
| | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | update ChangeLog for today | dscho | 2005-10-06 | 1 | -0/+8 |
| | |||||
* | add an extension mechanism for LibVNCClient, modify the client data handling | dscho | 2005-10-06 | 5 | -20/+219 |
| | | | | | so that more than one data structure can be attached, and add an example to speak the client part of the back channel. | ||||
* | add BackChannel extension example | dscho | 2005-10-06 | 2 | -1/+114 |
| | |||||
* | fix warning | dscho | 2005-10-06 | 1 | -1/+1 |
| | |||||
* | kill BackChannel and CustomClientMessage: the new extension technique makes ↵ | dscho | 2005-10-06 | 8 | -143/+1 |
| | | | | these hooks obsolete | ||||
* | provide a list of the pseudo encodings understood by the extension | dscho | 2005-10-06 | 3 | -5/+43 |
| | |||||
* | DEFINES -> AM_CFLAGS | dscho | 2005-10-06 | 2 | -2/+2 |
| | |||||
* | do it right: it is not DEFINES, but AM_CFLAGS | dscho | 2005-10-06 | 5 | -5/+5 |
| | |||||
* | add enablePseudoEncoding() to rfbProtocolExtension | dscho | 2005-10-03 | 4 | -8/+34 |
| | |||||
* | more TODOs, and an update to the website | dscho | 2005-09-29 | 2 | -1/+4 |
| | |||||
* | This monster commit contains support for TightVNC's file transfer protocol. | dscho | 2005-09-28 | 25 | -26/+3025 |
| | | | | Thank you very much, Rohit! | ||||
* | Introduce generic protocol extension method. Deprecate | dscho | 2005-09-27 | 6 | -11/+140 |
| | | | | the processCustomClientMessage() method. | ||||
* | Security is global. This was a misguided attempt to evade a global list. | dscho | 2005-09-27 | 3 | -11/+9 |
| | | | | I eventually saw the light and went with Rohit´s original approach. | ||||
* | support new ffmpeg version | dscho | 2005-09-27 | 2 | -5/+17 |
| | |||||
* | support VNC protocol version 3.7 | dscho | 2005-09-26 | 6 | -23/+258 |
| | |||||
* | for x11vnc standalone package, adaptions were needed after changing ↵ | dscho | 2005-08-22 | 1 | -2/+2 |
| | | | | LibVNCServer.spec.in | ||||
* | split rpm into three packages: the library, -devel (headers), and x11vnc | dscho | 2005-08-21 | 3 | -14/+57 |
| | |||||
* | x11vnc: more gui fixes, gui requests via client_sock, PASSWD_REQUIRED build ↵ | runge | 2005-07-18 | 6 | -1068/+1858 |
| | | | | opt. | ||||
* | x11vnc: setup for new release 0.7.3 while I remember how.. | runge | 2005-07-13 | 5 | -730/+705 |
| | |||||
* | x11vnc: tweaks for release, fix queue buildup under -viewonly. | runge | 2005-07-13 | 7 | -1051/+1573 |
| | |||||
* | x11vnc: more improvements to gui, scary nopassword warning msg. | runge | 2005-07-11 | 6 | -1339/+2836 |
| | |||||
* | x11vnc: -grab_buster for XGrabServer deadlock; fix scrolls and copyrect for ↵ | runge | 2005-07-09 | 7 | -57/+682 |
| | | | | -clip and -id | ||||
* | x11vnc: -gui tray now embeds in systray; more improvements to gui. | runge | 2005-07-07 | 7 | -812/+3577 |
| |