diff options
author | Christian Beier <dontmind@freeshell.org> | 2019-01-06 19:34:04 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2019-01-06 19:34:04 +0100 |
commit | d3a4292aa9ade2a335e0915523506b73e94251d7 (patch) | |
tree | b8ff4073168d695643454a85950bd3fffb180674 /rfb | |
parent | 14c24e2bcc05578e37dfd64b6efe73774a288c90 (diff) | |
download | libtdevnc-d3a4292aa9ade2a335e0915523506b73e94251d7.tar.gz libtdevnc-d3a4292aa9ade2a335e0915523506b73e94251d7.zip |
Move pipe_notify_client_thread to end of rfbClientRec
in order to retain ABI compatibility.
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/rfb.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -465,7 +465,6 @@ typedef struct _rfbClientRec { int protocolMinorVersion; #ifdef LIBVNCSERVER_HAVE_LIBPTHREAD - int pipe_notify_client_thread[2]; pthread_t client_thread; #endif @@ -692,6 +691,9 @@ typedef struct _rfbClientRec { rfbSslCtx *sslctx; wsCtx *wsctx; char *wspath; /* Requests path component */ +#ifdef LIBVNCSERVER_HAVE_LIBPTHREAD + int pipe_notify_client_thread[2]; +#endif } rfbClientRec, *rfbClientPtr; /** |