summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * CMake: Check for libgcrypt availability.Christian Beier2011-03-122-0/+9
| |
| * CMake: Threads can be available even if SDL is not.Christian Beier2011-03-121-4/+4
| |
| * CMake: fix building SDLvncviewer.Christian Beier2011-03-121-2/+4
| |
| * Include cmake configure file templates in dist tarball.Christian Beier2011-03-121-1/+1
| | | | | | | | Signed-off-by: Christian Beier <[email protected]>
| * Remove autogenerated files.Christian Beier2011-03-122-192/+0
| |
| * Update NEWS for 0.9.8 release.Christian Beier2011-03-121-0/+50
| |
* | Add libvncserver.pc and libvncclient.pc files.Vic Lee2011-03-285-0/+30
|/ | | | | Signed-off-by: Vic Lee <[email protected]> Signed-off-by: Christian Beier <[email protected]>
* Fix libvncclient TLS for Windows builds.Christian Beier2011-03-121-5/+39
| | | | | | | GnuTLS seems to expect proper errno values internally. So set them in our custom push/pull functions. Parts of the patch stolen from libcurl, thanks! Signed-off-by: Christian Beier <[email protected]>
* Let libvncclient build with gcrypt for MinGW32 builds.Christian Beier2011-03-121-0/+4
| | | | Signed-off-by: Christian Beier <[email protected]>
* Use WaitForMessage instead of sleep in socket reading to fix performance issue.Vic Lee2011-03-121-10/+2
| | | | Signed-off-by: Christian Beier <[email protected]>
* Set proper file permissions for source files.Christian Beier2011-03-1024-0/+0
|
* Next version will be 0.9.8.Christian Beier2011-03-102-3/+3
|
* Move zippy.c to examples.Christian Beier2011-03-105-11/+4
|
* Call WSAGetLastError() everywhere errno is read after a Winsock call.Christian Beier2011-03-035-1/+26
| | | | | Winsock does NOT update errno for us, we have fetch the last error manually using WSAGetLastError().
* Update minilzo library used for Ultra encoding to ver 2.04.Christian Beier2011-02-266-2090/+5177
| | | | | | | | | | According to the minilzo README, this brings a significant speedup on 64-bit architechtures. Changes compared to old version 1.08 can be found here: http://www.oberhumer.com/opensource/lzo/lzonews.php Signed-off-by: Christian Beier <[email protected]>
* libvncserver: Make RRE, CoRRE and Ultra encodings thread-safe.Christian Beier2011-02-077-159/+103
| | | | | | | This adds generic before/after encoding buffers to the rfbClient struct, so there is no need for thread local storage. Signed-off-by: Christian Beier <[email protected]>
* Include CMakeLists.txt file in dist tarball.Christian Beier2011-02-021-0/+1
|
* Remove unneeded files concerning CVS.Christian Beier2011-01-3114-157/+0
| | | | | | We have a git repo nowadays and I guess we won't go back to CVS. Signed-off-by: Christian Beier <[email protected]>
* Remove completely broken Visual Studio project filesJohannes Schindelin2011-01-313-414/+0
| | | | | | | | | If people seriously consider building with Visual Studio, there is always CMake. Pointed out by Christian Beier. Signed-off-by: Johannes Schindelin <[email protected]>
* SDLvncviewer: fix compilation from dist tarball.Christian Beier2011-01-312-1/+2
| | | | | Signed-off-by: Christian Beier <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
* Add ARD (Apple Remote Desktop) security type supportVic Lee2011-01-314-0/+342
| | | | | Signed-off-by: Vic Lee <[email protected]> Signed-off-by: Christian Beier <[email protected]>
* Put files used by both libs into a 'common' dir.Christian Beier2011-01-2515-3508/+19
| | | | | | | | | No functional changes. All files used by _both_ libvncserver and libvncclient are put into a 'common' directory and references from other files as well as Autotools and CMake build systems are updated. Signed-off-by: Christian Beier <[email protected]>
* Fix two errors found by cppcheckebola_rulez2011-01-201-1/+5
| | | | | Signed-off-by: Vic Lee <[email protected]> Signed-off-by: Christian Beier <[email protected]>
* Remove never used protocol version name string.runge2011-01-011-8/+3
|
* x11vnc: Use opengl to read screen on macosx. non-deprecated macosx ↵runge2010-12-2927-166/+1251
| | | | interfaces for input injection.
* x11vnc: force --with-system-libvncserver to use correct headers.runge2010-12-215-5/+20
|
* x11vnc: touchscreen uinput support and Java viewer mousewheel support. See ↵runge2010-12-2148-431/+5200
| | | | x11vnc/ChangeLog for rest.
* libvncserver sockets: check cl->screen before accessing itTobias Doerffel2010-12-011-2/+2
| | | | | | | | | In commit 079394ca5b14d8067b95a9cf95a834828b4425a6 new code with insufficient checks was introduced causing a segfault when doing a HTTP server connection. Such connections have no screen set in the client data structure. Signed-off-by: Tobias Doerffel <[email protected]>
* Doxygen documentation: actually add Doxyfile.Christian Beier2010-11-301-0/+1675
|
* The website is now maintained independentlyJohannes Schindelin2010-11-292-236/+0
| | | | Signed-off-by: Johannes Schindelin <[email protected]>
* Add doxygen documentation support.Christian Beier2010-11-1814-141/+371
| | | | | | | | | | | | | Adds automagically generating libvncserver/libvncclient API documentation using doxygen. This gives a nice overview on both APIs, include dependencies and function call/caller dependencies. TODO: Modify all the explaining comments in the .c files for use with doxygen as well. This patch only changes comments, no functional changes at all! Signed-off-by: Christian Beier <[email protected]>
* libvncserver: fix endless loop when server closed client in threaded mode.Christian Beier2010-11-181-5/+5
| | | | Signed-off-by: Christian Beier <[email protected]>
* libvncserver sockets: favor per-screen maxclientwait over global one when set.Christian Beier2010-11-181-3/+8
| | | | Signed-off-by: Christian Beier <[email protected]>
* libvncserver cleanup: remove rfbKeyFrame remnants.Christian Beier2010-11-113-18/+0
|
* libvnc[server|client]: implement xvp VNC extension.Christian Beier2010-11-027-3/+171
| | | | | | | This implements the xvp VNC extension, which is described in the community version of the RFB protocol: http://tigervnc.sourceforge.net/cgi-bin/rfbproto It is also mentioned in the official RFB protocol.
* Added missing initialization of extension mutexTobias Doerffel2010-10-291-0/+5
| | | | | | | | | | When not calling rfbRegisterProtocolExtension() the extension mutex is uninitialized but used upon calling rfbGetExtensionIterator() and rfbReleaseExtensionIterator() in rfbNewTCPOrUDPClient(). This causes libvncserver to crash on Win32 when building with thread support. Signed-off-by: Tobias Doerffel <[email protected]> Signed-off-by: Christian Beier <[email protected]>
* Only define strncasecmp to _strnicmp when using MS compiler.Christian Beier2010-10-212-5/+6
| | | | | | | Redefining strncasecmp to _strnicmp makes libvncclient hang forever in SetFormatAndEncodings() on Windows when built with MinGW64. Reported by Tobias Doerffel <[email protected]>, thanks!
* In rfbSendDirContent() we have to make sure to call closedir() beforeTobias Doerffel2010-10-201-1/+5
| | | | | | returning. This did not happen if rfbSendFileTransferMessage() failed. Signed-off-by: Christian Beier <[email protected]>
* Fix build failure wrt IP QoS support in libvncclient.Christian Beier2010-10-201-1/+1
| | | | | | This is a small addendum to 0797e42a4aaf8131ae71899faea2d682ed81cb59. Seems that having IPv6 support in the OS does not necessarily mean that IPV6_TCLASS is available. One such case seems to be Mac OS X 10.5.
* Avoid 100% CPU usage when calling ReadFromRFBServer and no available bytes ↵Vic Lee2010-10-131-0/+10
| | | | | | | to read Signed-off-by: Vic Lee <[email protected]> Signed-off-by: Christian Beier <[email protected]>
* rfb/rfbproto.h: Prefix WORDS_BIGENDIAN when it is defined.Christian Beier2010-10-081-0/+5
| | | | | | | | Some (all?) autotool versions do not properly prefix WORDS_BIGENDIAN with LIBVNCSERVER_, so do that manually here. Thanks to Lorenz Kolb for reporting.
* IP QoS support in libvncclient.Christian Beier2010-09-295-0/+61
| | | | | | | | | | This enables setting the DSCP/Traffic Class field of IP/IPv6 packets sent by a client. For example starting a client with -qosdscp 184 marks all outgoing traffic for expedited forwarding. Implementation for Win32 is still a TODO, though. See http://betelco.blogspot.com/2009/03/dscp-marking-under-windows-at.html for an overview of the Win32 QoS API mess...
* Non-blocking sockets for Windows.Christian Beier2010-09-136-46/+41
| | | | | | | | | | | Expands the SetNonBlocking() function in libvncclient/sockets.c to also work under Windows and also changes it to honour maybe already present socket flags. A similar function was introduced for libvncserver as well and all the #ifdef'ed fnctl calls replaced with calls to that one. Signed-off-by: Christian Beier <[email protected]>
* Cleanup: remove CORBA stuff.Christian Beier2010-09-133-20/+1
| | | | | | | The header file and most of the functions referred to do not exist in libvncserver. Signed-off-by: Christian Beier <[email protected]>
* update classes/ssl jars, patches, and scriptrunge2010-09-107-58/+261
|
* update to x11vnc 0.9.12runge2010-09-1032-265/+769
|
* Fix MinGW32 compilation with libjpeg.Christian Beier2010-09-062-0/+6
| | | | | | | | | MinGW32 (or more exactly, a rpcndr.h file included by winsock2.h) typedefs a 'boolean' type that jmorecfg.h included by jpeglib.h also tries to typedef. So, tell the jpeg headers. Closes: 3007302
* Fix MinGW32 checking for IPv6.Christian Beier2010-07-142-2/+16
| | | | | Signed-off-by: Christian Beier <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
* libvncclient: add ipv6 supportVic Lee2010-07-084-13/+97
| | | | | | | | [jes: pulled the "host" declarations into the conditionally compiled blocks where that variable is used. Also fixed non-IPv6 connections.] Signed-off-by: Vic Lee <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
* Call MallocFrameBuffer before SetFormatAndEncodingsWouter Van Meir2010-06-041-3/+3
| | | | | | | | | | | | The hook is still called after InitialiseRFBConnection() so we can choose the color settings depending on the vnc server (or settings) in that hook. This way one can use the "VNC server default format" pixelformat if the client supports it, or perform a workaround (Intel AMT KVM "classic vnc" server only works using 8bit colors in RFB3.8) Signed-off-by: Wouter Van Meir <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>