summaryrefslogtreecommitdiffstats
path: root/rfb
Commit message (Collapse)AuthorAgeFilesLines
* Merge tag 'LibVNCServer-0.9.12'Slávek Banko2019-02-066-15/+143
|\ | | | | | | Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
| * Move pipe_notify_client_thread to end of rfbClientRecChristian Beier2019-01-061-1/+3
| | | | | | | | in order to retain ABI compatibility.
| * Merge pull request #238 from tetrane/pr-fix-use-after-freeChristian Beier2019-01-061-0/+1
| |\ | | | | | | Fix use-after-free and concurrent access segmentation fault
| | * Fix the concurrent issue hapenning between the freeing of the client and the ↵Quentin BUATHIER2018-08-091-0/+1
| | | | | | | | | | | | clientOutput thread
| * | Allow to use global LZO library instead of miniLZOTobias Junghans2018-11-221-0/+3
| | | | | | | | | | | | | | | The complete LZO library nowadays is installed on many systems so we can optionally make use of it and omit internal miniLZO implementation.
| * | Merge pull request #263 from veyon/custom-auth-handlersChristian Beier2018-11-181-0/+3
| |\ \ | | | | | | | | LibVNCClient: add support for custom auth handlers
| | * | LibVNCClient: add support for custom auth handlersTobias Junghans2018-11-111-0/+3
| | | | | | | | | | | | | | | | | | | | This allows to register custom authentication handlers in order to support additional security types.
| * | | rfb: add header guard for default8x16Tobias Junghans2018-11-061-0/+5
| |/ /
| * / Remove the turbojpeg.h dependency from public headersChristian Beier2018-09-271-2/+1
| |/ | | | | | | Closes #230
| * CMake: add a LIBVNCSERVER_HAVE_GNUTLS #defineChristian Beier2018-07-081-0/+3
| |
| * build: decouple GnuTLS|OpenSSL detection from WebSockets supportChristian Beier2018-07-081-5/+0
| |
| * build: remove LIBVNCSERVER_WITH_CLIENT_TLS #defineChristian Beier2018-06-291-3/+0
| | | | | | | | It is not used anywhere anymore.
| * Tight: export SendCompressedData and SendTightHeader functionsEddie James2018-06-201-0/+2
| | | | | | | | | | | | | | | | | | These functions can be used to send already compressed jpegs to a client, circumventing the usual rect/region update methods which operate on a raw rgb framebuffer. Rename the functions with the usual rfb prefix and add the prototypes in rfb.h. Signed-off-by: Eddie James <eajames@us.ibm.com>
| * Merge pull request #203 from dcommander/turbovnc-clientChristian Beier2018-01-231-1/+11
| |\ | | | | | | Include Tight decoding optimizations from TurboVNC
| | * Include Tight decoding optimizations from TurboVNCDRC2018-01-221-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - As with the encoder, the decoder now uses the TurboJPEG wrapper, which allows it to decode JPEG images directly into the framebuffer. This eliminates a buffer copy (CopyRectangle()) as well as the expensive RGB pixel conversion in DecompressJpegRectBPP(). The TurboJPEG wrapper performs RGB pixel conversion more optimally, and only when necessary (it uses the libjpeg-turbo colorspace extensions when available, in order to avoid RGB conversion.) - The other Tight subencoding types are also now decoded directly into the framebuffer, which eliminates buffer copies. - The Tight decoder now supports the rfbTightNoZlib extension, which allows the server to bypass zlib compression when Compression Level 0 is selected. The encoder already supports this extension. Passing the data stream through zlib when Compression Level 0 is selected needlessly wastes CPU time, since all zlib is doing is copying the data internally into its own structures.
| * | Add trle decoderWiki Wang2017-09-151-0/+1
| |/
| * Move HAVE_SASL #ifdefs into header file to have less LOCChristian Beier2017-09-021-2/+0
| |
| * Merge branch 'sasl2' of git://github.com/simonwaterman/libvncserver into ↵Christian Beier2017-09-023-2/+30
| |\ | | | | | | | | | simonwaterman-sasl2
| | * Added SASL authentication supportsimon2017-06-253-2/+30
| | | | | | | | | | | | Added SASL support to OpenSSL
| * | websockets: restore webSocketCheckDisconnect() to keep API compatibilityChristian Beier2017-05-141-0/+1
| | |
| * | remove Hixie-specific MD5 and check functionsAndreas Weigel2017-05-141-1/+0
| | |
| * | Merge pull request #176 from simonwaterman/x509verify-opensslChristian Beier2017-05-141-0/+8
| |\ \ | | |/ | |/| X509 certificate verification for OpenSSL
| | * X509 certificate verification for OpenSSLsimon2017-05-051-0/+8
| | |
| * | CMake: add all function checks that used to be in configure.acChristian Beier2017-04-211-0/+42
| | | | | | | | | | | | Fixes #174
| * | CMake: properly name rfbconfig.h cmake templateChristian Beier2017-04-211-0/+0
| |/
| * CMake: set LIBVNCSERVER_HAVE_FORK in rfbconfig.h if fork() foundChristian Beier2017-04-181-0/+3
| |
| * CMake: set LIBVNCSERVER_HAVE_LIBSSL in rfbconfig.h if OpenSSL foundChristian Beier2017-04-181-0/+3
| |
| * CMake: detect mmap() and write result to rfbconfig.hChristian Beier2017-04-181-0/+3
| |
| * Fix building for Android and add build instructions to READMEChristian Beier2017-03-261-0/+5
| |
| * Merge branch 'circle' of https://github.com/ldmnyblzs/libvncserver into ↵Christian Beier2017-03-261-0/+15
| |\ | | | | | | | | | | | | | | | | | | ldmnyblzs-circle Conflicts: libvncclient/rfbproto.c
| | * Add function pointers for every type of rectangleBalazs Ludmany2016-06-291-0/+15
| | |
| * | rfbproto: re-add erroneously removed SOCKET definitionChristian Beier2017-02-211-0/+1
| | |
| * | rfbproto: remove SOCKET redefinitionsChristian Beier2017-02-211-3/+0
| | |
| * | Fix "rfbBool's size is not 1" runtime error with MSVCChristian Beier2017-02-211-1/+1
| | |
| * | CMake: that file ain't used no moreChristian Beier2017-01-311-4/+0
| | |
| * | Various #ifdef fixes to allow building with MSVC2014Christian Beier2017-01-281-0/+1
| | |
| * | CMake: add a HAVE_SYS_UIO_H flag to rfbconfig.hChristian Beier2017-01-281-0/+3
| | |
| * | Fix LibVNCClient compilation with MSVC 2014Christian Beier2017-01-281-0/+4
| |/
* | Merge tag 'LibVNCServer-0.9.11' of https://github.com/LibVNC/libvncserverSlávek Banko2017-10-145-38/+60
|\| | | | | | | | | | | Conflicts: CMakeLists.txt libvncserver/main.c
| * Fix rfbClientSwap64IfLE broken in fe7df89fb1777b4fd303d5a601541f6062caf8eaChristian Beier2016-06-051-1/+1
| |
| * Merge pull request #84 from plettix/masterChristian Beier2016-06-052-4/+4
| |\ | | | | | | fix for issue 81
| | * shift fixes - if an integer is a negative number then the return value of ↵plettix2015-07-222-4/+4
| | | | | | | | | | | | "Swap32IfLE" was -1
| * | Only include endian.h if present on system.Christian Beier2016-05-301-2/+2
| | |
| * | Merge pull request #105 from cgeorges82/masterChristian Beier2016-05-301-0/+21
| |\ \ | | | | | | | | fix for issue #97. Also, this fixes cmake builds for other platforms.
| | * | Append IPv6 option in CMake ProjectCédric Georges2016-03-051-0/+21
| | | |
| * | | Merge pull request #103 from rdieter/masterChristian Beier2016-04-241-1/+1
| |\ \ \ | | | | | | | | | | use namespaced vnc_max macro (issue #102)
| | * | | use namespaced rfbMax macro (issue #102)Rex Dieter2016-04-181-1/+1
| | |/ / | | | | | | | | | | | | Not using generic 'max', avoids conflicts with stl_algobase.h
| * | | Merge pull request #118 from gbdj/threadsafe-100-squashChristian Beier2016-04-241-0/+6
| |\ \ \ | | | | | | | | | | libvncclient/tls_gnutls.c: Add hooks to WriteToTLS() for optional protection by mutex. (Squashed)
| | * | | libvncclient/tls_gnutls.c: Add hooks to WriteToTLS() for optional protection ↵gbdj2016-04-231-0/+6
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | by mutex. Fix upstream issue #100 Squashed commit of the pull request #101 : commit 1c7e01e81862bc46508e675e83c74cc6d63224b0 commit 1e749b094d6696380d3f0540a00138d7e3427874
| * / / Increase MAX_ENCODINGS value to accommodate more client encodingszbierak2016-04-131-1/+1
| |/ / | | | | | | | | | Resolves #112