- 14 Sep, 2012 2 commits
-
-
Raphael Kubo da Costa authored
-
Raphael Kubo da Costa authored
The current definitions were mostly useful to glibc and followed its feature_test_macros(3) documentation. However, this means other platforms still had problems when building with strict compilation flags. _BSD_SOURCE, for example, is only recognized by glibc, and other platforms sometimes need _XOPEN_SOURCE instead, or even the removal of some definitions (such as the outdate _POSIX_SOURCE one). _POSIX_SOURCE also had to be conditionally defined in some places, as what it enables or disables during compilation varies across systems.
-
- 20 Jul, 2012 1 commit
-
-
Rostislav Lisovy authored
Signed-off-by:
Rostislav Lisovy <lisovy@gmail.com> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 09 May, 2012 1 commit
-
-
Christian Beier authored
-
- 03 May, 2012 1 commit
-
-
Christian Beier authored
The various other headers include windows.h and the winsock headers which give an error when SOCKET and socklen_t are already defined.
-
- 25 Apr, 2012 1 commit
-
-
Christian Beier authored
-
- 23 Apr, 2012 1 commit
-
-
Monkey authored
Original thread: http://sourceforge.net/tracker/?func=detail&aid=3310255&group_id=32584&atid=405860
-
- 15 Apr, 2012 3 commits
-
-
Christian Beier authored
-
Christian Beier authored
-
Christian Beier authored
LibVNCClient: Remove all those WITH_CLIENT_TLS #ifdefs and move GnuTLS specific functionality into tls_gnutls.c.
-
- 14 Apr, 2012 1 commit
-
-
Christian Beier authored
-
- 02 Apr, 2012 1 commit
-
-
Christian Beier authored
-
- 10 Mar, 2012 1 commit
-
-
Christian Beier authored
Besided making libvncserver reverseVNC IPv6-aware, this introduces some changes on the client side as well to make clients listen on IPv6 sockets, too. Like the server side, this also uses a separate-socket approach.
-
- 04 Feb, 2012 1 commit
-
-
Luca Stauble authored
For security reasons, it can be important to limit which IP addresses a LibVNCClient-based client should listen for reverse connections. This commit adds that option. To preserve binary backwards-compatibility, the field was added to the end of the rfbclient struct, and the function ListenAtTcpPort retains its signature (but calls the new ListenAtTcpPortAndAddress). [jes: shortened the commit subject, added a longer explanation in the commit body and adjusted style] Signed-off-by:
Luca Stauble <gnekoz@gmail.com> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 08 Nov, 2011 1 commit
-
-
Christian Beier authored
The auth methods that employ Getcredential() will only be used if the client's GetCredential callback is actually set.
-
- 27 Apr, 2011 1 commit
-
-
Vic Lee authored
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>
-
- 17 Mar, 2011 3 commits
-
-
Christian Beier authored
My bad. There we see what the encodings test is good for ;-)
-
Christian Beier authored
There can not be more than 255 security types and MSLogon is RFB 3.6 only.
-
Christian Beier authored
-
- 12 Mar, 2011 3 commits
-
-
Christian Beier authored
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>
-
Christian Beier authored
Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
Vic Lee authored
Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
- 03 Mar, 2011 1 commit
-
-
Christian Beier authored
Winsock does NOT update errno for us, we have fetch the last error manually using WSAGetLastError().
-
- 26 Feb, 2011 1 commit
-
-
Christian Beier authored
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.phpSigned-off-by:
Christian Beier <dontmind@freeshell.org>
-
- 31 Jan, 2011 2 commits
-
-
Christian Beier authored
We have a git repo nowadays and I guess we won't go back to CVS. Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
Vic Lee authored
Signed-off-by:
Vic Lee <llyzs@163.com> Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
- 25 Jan, 2011 1 commit
-
-
Christian Beier authored
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 <dontmind@freeshell.org>
-
- 02 Nov, 2010 1 commit
-
-
Christian Beier authored
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.
-
- 21 Oct, 2010 1 commit
-
-
Christian Beier authored
Redefining strncasecmp to _strnicmp makes libvncclient hang forever in SetFormatAndEncodings() on Windows when built with MinGW64. Reported by Tobias Doerffel <tobias.doerffel@gmail.com>, thanks!
-
- 20 Oct, 2010 1 commit
-
-
Christian Beier authored
This is a small addendum to 0797e42a. 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.
-
- 13 Oct, 2010 1 commit
-
-
Vic Lee authored
Signed-off-by:
Vic Lee <llyzs@163.com> Signed-off-by:
Christian Beier <dontmind@freeshell.org>
-
- 29 Sep, 2010 1 commit
-
-
Christian Beier authored
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...
-
- 13 Sep, 2010 1 commit
-
-
Christian Beier authored
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 <dontmind@freeshell.org>
-
- 06 Sep, 2010 1 commit
-
-
Christian Beier authored
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
-
- 14 Jul, 2010 1 commit
-
-
Christian Beier authored
Signed-off-by:
Christian Beier <dontmind@freeshell.org> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 08 Jul, 2010 1 commit
-
-
Vic Lee authored
[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 <llyzs@163.com> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 04 Jun, 2010 1 commit
-
-
Wouter Van Meir authored
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 <wouter.vanmeir@pandora.be> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 09 May, 2010 1 commit
-
-
runge authored
-
- 13 Mar, 2010 1 commit
-
-
Johannes Schindelin authored
Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-
- 25 Jan, 2010 1 commit
-
-
Christian Beier authored
The serverPort member is already set in rfbGetClient(), if we set it again in rfbInitClient(), this breaks playing of vncrec files (this relies on serverPort set to -1). Signed-off-by:
Christian Beier <dontmind@freeshell.org> Signed-off-by:
Johannes Schindelin <johannes.schindelin@gmx.de>
-