Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | This monster commit contains support for TightVNC's file transfer protocol. | dscho | 2005-09-28 | 17 | -19/+2974 | |
| | | | | Thank you very much, Rohit! | |||||
* | Introduce generic protocol extension method. Deprecate | dscho | 2005-09-27 | 4 | -10/+103 | |
| | | | | the processCustomClientMessage() method. | |||||
* | Security is global. This was a misguided attempt to evade a global list. | dscho | 2005-09-27 | 2 | -7/+8 | |
| | | | | I eventually saw the light and went with Rohit�s original approach. | |||||
* | support VNC protocol version 3.7 | dscho | 2005-09-26 | 3 | -21/+212 | |
| | ||||||
* | x11vnc: -gui tray mode, httpd.c: check httpListenSock >= 0. | runge | 2005-07-02 | 1 | -0/+3 | |
| | ||||||
* | main.c: fix screen->deferUpdateTime default. | runge | 2005-06-27 | 1 | -3/+3 | |
| | ||||||
* | main.c: XReadScreen check, fix 64bit use of cursors, x11vnc: first round of ↵ | runge | 2005-06-14 | 1 | -14/+34 | |
| | | | | beta-testing fixes, RFE's. | |||||
* | main.c: no sraRgnSubstract for copyRect, scrolls for x11vnc -scale; add ↵ | runge | 2005-06-04 | 1 | -7/+3 | |
| | | | | -fixscreen | |||||
* | main.c: fix copyRect for non-cursor-shape-aware clients. | runge | 2005-05-31 | 1 | -0/+43 | |
| | ||||||
* | fix off by one bug | dscho | 2005-05-24 | 1 | -2/+4 | |
| | ||||||
* | fix off by one bug | dscho | 2005-05-18 | 1 | -2/+2 | |
| | ||||||
* | hide strict ansi stuff if not explicitely turned on; actually use the ↵ | dscho | 2005-05-18 | 3 | -3/+9 | |
| | | | | socklen_t test from configure.ac | |||||
* | also distribute private.h... | dscho | 2005-05-17 | 1 | -1/+1 | |
| | ||||||
* | fix SIGSEGV when client has incompatible protocol; release mutex before ↵ | dscho | 2005-05-16 | 1 | -2/+5 | |
| | | | | freeing it | |||||
* | ANSIfy, fix some warnings from Linus' sparse | dscho | 2005-05-15 | 22 | -454/+408 | |
| | ||||||
* | libvncserver/{main.c,rfbserver.c}: fix a couple more CopyRect memory leaks | runge | 2005-05-15 | 2 | -2/+3 | |
| | ||||||
* | fix memory leaks detected using valgrind | dscho | 2005-05-14 | 2 | -6/+6 | |
| | ||||||
* | socketInitDone -> socketState | dscho | 2005-05-07 | 4 | -9/+56 | |
| | ||||||
* | libvncserver/main.c: fix memory leak in rfbDoCopyRect/rfbScheduleCopyRect; ↵ | runge | 2005-05-03 | 1 | -0/+2 | |
| | | | | configure.ac tweaks. | |||||
* | clear requested region after handling it | dscho | 2005-04-27 | 1 | -1/+1 | |
| | ||||||
* | autoconf: rpm -> rpmbuild and echo -n -> printf | runge | 2005-03-05 | 1 | -1/+1 | |
| | ||||||
* | add '-listen ipaddr' option | runge | 2005-03-05 | 4 | -12/+47 | |
| | ||||||
* | 10l: really fix preferredEncoding set from outside | dscho | 2005-01-25 | 1 | -1/+2 | |
| | ||||||
* | implemented Floyd-Steinberg dither in order to rfbMakeMaskFromAlphaSource | dscho | 2005-01-21 | 1 | -0/+38 | |
| | ||||||
* | disappearing cursor fixed & debug message purged | dscho | 2005-01-20 | 1 | -1/+0 | |
| | ||||||
* | fix disappearing cursor | dscho | 2005-01-20 | 3 | -12/+12 | |
| | ||||||
* | redraw region under old cursor even if the old cursor doesn't have to be freed. | dscho | 2005-01-19 | 1 | -2/+3 | |
| | ||||||
* | oops, a debug message slipped through | dscho | 2005-01-19 | 1 | -2/+0 | |
| | ||||||
* | pointerClient was still static. | dscho | 2005-01-18 | 4 | -158/+148 | |
| | | | | | | | | | | | | | | | | | | | | | | do not make requestedRegion empty without reason. the cursor handling for clients which don't handle CursorShape updates was completely broken. It originally was very complicated for performance reasons, however, in most cases it made performance even worse, because at idle times there was way too much checking going on, and furthermore, sometimes unnecessary updates were inevitable. The code now is much more elegant: the ClientRec structure knows exactly where it last painted the cursor, and the ScreenInfo structure knows where the cursor shall be. As a consequence there is no more rfbDrawCursor()/rfbUndrawCursor(), no more dontSendFramebufferUpdate, and no more isCursorDrawn. It is now possible to have clients which understand CursorShape updates and clients which don't at the same time. rfbSetCursor no longer has the option freeOld; this is obsolete, as the cursor structure knows what to free and what not. | |||||
* | add convenience function to clip using x2,y2 instead of w,h | dscho | 2005-01-18 | 1 | -0/+22 | |
| | ||||||
* | add cursor alphablending to rfb.h cursor.c, x11vnc -alphablend -snapfb etc.. | runge | 2005-01-16 | 1 | -6/+81 | |
| | ||||||
* | add comment "if col=bcol, assume background is transparent" | dscho | 2005-01-14 | 1 | -1/+2 | |
| | ||||||
* | fix comment | dscho | 2005-01-14 | 1 | -1/+2 | |
| | ||||||
* | close socket in ClientConnectionGone | dscho | 2005-01-14 | 1 | -0/+3 | |
| | ||||||
* | return value of rfbProcessEvents tells if an update was pending | dscho | 2005-01-14 | 1 | -2/+8 | |
| | ||||||
* | fix segfault when trying to write outside of frameBuffer | dscho | 2005-01-14 | 1 | -1/+1 | |
| | ||||||
* | add hook to allow for custom client messages | dscho | 2005-01-03 | 2 | -0/+9 | |
| | ||||||
* | x11vnc: synchronous mode for -remote, string cleanup | runge | 2004-12-20 | 1 | -0/+1 | |
| | ||||||
* | don't mix up width & height! | dscho | 2004-12-17 | 1 | -1/+1 | |
| | ||||||
* | support MinGW32! | dscho | 2004-12-01 | 3 | -13/+17 | |
| | ||||||
* | release client list mutex earlier | dscho | 2004-10-02 | 1 | -2/+2 | |
| | ||||||
* | output only via rfbErr | dscho | 2004-09-03 | 1 | -4/+4 | |
| | ||||||
* | global structures/functions should have "rfb", "sra" or "zrle" as prefix, | dscho | 2004-08-30 | 20 | -423/+423 | |
| | | | | while structure members should not | |||||
* | convert c++ comments to c comments | dscho | 2004-06-18 | 1 | -8/+8 | |
| | ||||||
* | debug | dscho | 2004-06-18 | 1 | -0/+8 | |
| | ||||||
* | fix CoRRE with maxRectsPerUpdate bug | dscho | 2004-06-15 | 1 | -2/+4 | |
| | ||||||
* | all this moving and renaming needs changes in the cvsignores, too! | dscho | 2004-06-07 | 1 | -0/+4 | |
| | ||||||
* | fix cursor trails (when not using cursor encoding and moving the cursor, | dscho | 2004-06-07 | 1 | -2/+14 | |
| | | | | the redrawn part of the screen didn't get updated, and so left cursor trails). | |||||
* | add client_examples/, add SDLvncviewer, libvncclient API changes, suppress ↵ | dscho | 2004-06-07 | 1 | -1/+1 | |
| | | | | automake CFLAGS nagging | |||||
* | x11vnc: view-only plain passwd: -viewpasswd and 2nd line of -passwdfile | runge | 2004-05-27 | 2 | -13/+15 | |
| |