summaryrefslogtreecommitdiffstats
path: root/rfb
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2018-07-08 17:56:23 +0200
committerChristian Beier <dontmind@freeshell.org>2018-07-08 17:56:50 +0200
commite775aec64e75d5b3e5580ab2f0a860efe9ce4d1b (patch)
tree66725f93b1d22ed171091304fead4a4780d4685a /rfb
parent3c05dd565e7c0253bcca437bf56ad41564c12650 (diff)
downloadlibtdevnc-e775aec64e75d5b3e5580ab2f0a860efe9ce4d1b.tar.gz
libtdevnc-e775aec64e75d5b3e5580ab2f0a860efe9ce4d1b.zip
build: decouple GnuTLS|OpenSSL detection from WebSockets support
Diffstat (limited to 'rfb')
-rw-r--r--rfb/rfb.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/rfb/rfb.h b/rfb/rfb.h
index 6401e78..3d6d31e 100644
--- a/rfb/rfb.h
+++ b/rfb/rfb.h
@@ -378,10 +378,8 @@ typedef struct _rfbScreenInfo
rfbDisplayFinishedHookPtr displayFinishedHook;
/** xvpHook is called to handle an xvp client message */
rfbXvpHookPtr xvpHook;
-#ifdef LIBVNCSERVER_WITH_WEBSOCKETS
char *sslkeyfile;
char *sslcertfile;
-#endif
int ipv6port; /**< The port to listen on when using IPv6. */
char* listen6Interface;
/* We have an additional IPv6 listen socket since there are systems that
@@ -690,12 +688,9 @@ typedef struct _rfbClientRec {
int turboQualityLevel; /* 1-100 scale */
#endif
#endif
-
-#ifdef LIBVNCSERVER_WITH_WEBSOCKETS
rfbSslCtx *sslctx;
wsCtx *wsctx;
char *wspath; /* Requests path component */
-#endif
} rfbClientRec, *rfbClientPtr;
/**