summaryrefslogtreecommitdiffstats
path: root/libvncclient/tls.c
Commit message (Collapse)AuthorAgeFilesLines
* Add the OpenSSL libvncclient TLS version to the build system.Christian Beier2012-04-141-533/+0
|
* Replace deprecated GnuTLS functions gnutls_*_set_priority with ↵Vic Lee2011-04-271-9/+6
| | | | | | | | | | | | | gnutls_priority_set_direct. The functions gnutls_*_set_priority we used were marked deprecated since latest GnuTLS version 2.12. However the replacement function gnutls_priority_set_direct is available since 2.2, which is even lower than our version requirement 2.4 in configure. The patch just replace the deprecate function to fix the compile warning. Signed-off-by: Vic Lee <llyzs@163.com> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
* 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 <dontmind@freeshell.org>
* Call WSAGetLastError() everywhere errno is read after a Winsock call.Christian Beier2011-03-031-0/+6
| | | | | Winsock does NOT update errno for us, we have fetch the last error manually using WSAGetLastError().
* Add VeNCrypt support in libvncclientVic Lee2009-10-021-3/+224
| | | | Signed-off-by: Vic Lee <llyzs@163.com>
* Add anonymous TLS support in libvncclientVic Lee2009-10-021-0/+275
Signed-off-by: Vic Lee <llyzs@163.com>