Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Plugged some memory leakage | steven_carr | 2006-05-28 | 1 | -0/+5 |
| | |||||
* | Default to RFB 3.8, add command line option to specify the RFB version. | steven_carr | 2006-05-15 | 1 | -3/+4 |
| | |||||
* | The great UltraVNC Compatibility Commit | steven_carr | 2006-05-15 | 1 | -5/+27 |
| | |||||
* | Client Independent Server Side Scaling is now supported | steven_carr | 2006-05-03 | 1 | -3/+18 |
| | | | | Both PalmVNC and UltraVNC SetScale messages are supported | ||||
* | add KeyboardLedState extension | dscho | 2006-03-28 | 1 | -0/+1 |
| | |||||
* | do not timeout on idle client input (with pthreads) | dscho | 2006-03-01 | 1 | -0/+16 |
| | |||||
* | add handleEventsEagerly flag (Thanks, Donald) | dscho | 2006-02-28 | 1 | -0/+2 |
| | |||||
* | Added method to get extension specific client data | rohit_99129 | 2006-02-24 | 1 | -1/+1 |
| | |||||
* | Added method to get extension specific client data | rohit_99129 | 2006-02-24 | 1 | -0/+16 |
| | |||||
* | add functions to unregister extensions/security types | dscho | 2006-02-22 | 1 | -5/+68 |
| | |||||
* | fix some non-gcc compiler warnings and signals in x11vnc | runge | 2006-02-20 | 1 | -0/+1 |
| | |||||
* | logMutex needs to be initialized too; in rfbDefaultLog. | runge | 2006-01-11 | 1 | -2/+12 |
| | |||||
* | rfbProcessEvents() has to iterate also over clients with sock < 0 to close them | dscho | 2006-01-10 | 1 | -1/+3 |
| | |||||
* | fix client non-jpeg/libz builds | runge | 2006-01-08 | 1 | -1/+1 |
| | |||||
* | rfbRegisterProtocolExtension extMutex was never initialized. | runge | 2006-01-06 | 1 | -0/+6 |
| | |||||
* | introduce -deferptrupdate (thanks Dave) | dscho | 2005-12-19 | 1 | -0/+21 |
| | |||||
* | assorted fixes for MinGW32 | dscho | 2005-12-19 | 1 | -1/+1 |
| | |||||
* | fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg ↵ | runge | 2005-11-25 | 1 | -0/+2 |
| | | | | 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. | ||||
* | kill BackChannel and CustomClientMessage: the new extension technique makes ↵ | dscho | 2005-10-06 | 1 | -6/+0 |
| | | | | these hooks obsolete | ||||
* | This monster commit contains support for TightVNC's file transfer protocol. | dscho | 2005-09-28 | 1 | -0/+40 |
| | | | | Thank you very much, Rohit! | ||||
* | Introduce generic protocol extension method. Deprecate | dscho | 2005-09-27 | 1 | -0/+38 |
| | | | | the processCustomClientMessage() method. | ||||
* | Security is global. This was a misguided attempt to evade a global list. | dscho | 2005-09-27 | 1 | -1/+0 |
| | | | | I eventually saw the light and went with Rohit´s original approach. | ||||
* | support VNC protocol version 3.7 | dscho | 2005-09-26 | 1 | -0/+1 |
| | |||||
* | main.c: fix screen->deferUpdateTime default. | runge | 2005-06-27 | 1 | -3/+3 |
| | |||||
* | 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-18 | 1 | -2/+2 |
| | |||||
* | hide strict ansi stuff if not explicitely turned on; actually use the ↵ | dscho | 2005-05-18 | 1 | -0/+2 |
| | | | | socklen_t test from configure.ac | ||||
* | ANSIfy, fix some warnings from Linus' sparse | dscho | 2005-05-15 | 1 | -31/+23 |
| | |||||
* | libvncserver/{main.c,rfbserver.c}: fix a couple more CopyRect memory leaks | runge | 2005-05-15 | 1 | -0/+1 |
| | |||||
* | fix memory leaks detected using valgrind | dscho | 2005-05-14 | 1 | -1/+2 |
| | |||||
* | socketInitDone -> socketState | dscho | 2005-05-07 | 1 | -3/+21 |
| | |||||
* | libvncserver/main.c: fix memory leak in rfbDoCopyRect/rfbScheduleCopyRect; ↵ | runge | 2005-05-03 | 1 | -0/+2 |
| | | | | configure.ac tweaks. | ||||
* | add '-listen ipaddr' option | runge | 2005-03-05 | 1 | -0/+2 |
| | |||||
* | fix disappearing cursor | dscho | 2005-01-20 | 1 | -3/+0 |
| | |||||
* | pointerClient was still static. | dscho | 2005-01-18 | 1 | -37/+12 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | fix comment | dscho | 2005-01-14 | 1 | -1/+2 |
| | |||||
* | return value of rfbProcessEvents tells if an update was pending | dscho | 2005-01-14 | 1 | -2/+8 |
| | |||||
* | add hook to allow for custom client messages | dscho | 2005-01-03 | 1 | -0/+6 |
| | |||||
* | support MinGW32! | dscho | 2004-12-01 | 1 | -0/+2 |
| | |||||
* | global structures/functions should have "rfb", "sra" or "zrle" as prefix, | dscho | 2004-08-30 | 1 | -149/+149 |
| | | | | while structure members should not | ||||
* | x11vnc: view-only plain passwd: -viewpasswd and 2nd line of -passwdfile | runge | 2004-05-27 | 1 | -2/+4 |
| | |||||
* | move the library into libvncserver/, x11vnc into x11vnc/ | dscho | 2004-05-25 | 1 | -0/+851 |