diff options
author | runge <runge> | 2005-11-25 07:22:43 +0000 |
---|---|---|
committer | runge <runge> | 2005-11-25 07:22:43 +0000 |
commit | 8eb18f6cd8793ea55f04d3c736885b04c41aba4f (patch) | |
tree | d447343f6495e703690217928e2783dc1636df26 /rfb | |
parent | de99644d2fa630828fd6e92ed206dd63da1fdfa9 (diff) | |
download | libvncserver-8eb18f6cd8793ea55f04d3c736885b04c41aba4f.zip libvncserver-8eb18f6cd8793ea55f04d3c736885b04c41aba4f.tar.gz |
fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg 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.
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfbclient.h | 2 | ||||
-rw-r--r-- | rfb/rfbproto.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/rfb/rfbclient.h b/rfb/rfbclient.h index c99f4f9..8759b0e 100644 --- a/rfb/rfbclient.h +++ b/rfb/rfbclient.h @@ -157,6 +157,7 @@ typedef struct _rfbClient { #endif +#ifdef LIBVNCSERVER_HAVE_LIBZ #ifdef LIBVNCSERVER_HAVE_LIBJPEG /* * Variables for the ``tight'' encoding implementation. @@ -184,6 +185,7 @@ typedef struct _rfbClient { size_t jpegBufferLen; #endif +#endif /* cursor.c */ diff --git a/rfb/rfbproto.h b/rfb/rfbproto.h index 60ba763..cadbce4 100644 --- a/rfb/rfbproto.h +++ b/rfb/rfbproto.h @@ -905,7 +905,7 @@ typedef struct _rfbFileTransferMsg { uint8_t contentType; /* See defines below */ uint16_t contentParam;/* Other possible content classification (Dir or File name, etc..) */ uint32_t size; /* FileSize or packet index or error or other */ - /* uint32_t sizeH; // Additional 32Bits params to handle big values. Only for V2 (we want backward compatibility between all V1 versions) */ + /* uint32_t sizeH; Additional 32Bits params to handle big values. Only for V2 (we want backward compatibility between all V1 versions) */ uint32_t length; /* followed by data char text[length] */ } rfbFileTransferMsg; |