Fix compilation without TLS

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
pull/1/head
Johannes Schindelin 14 years ago
parent 14854d2e5e
commit 19aa466a96

@ -915,6 +915,10 @@ InitialiseRFBConnection(rfbClient* client)
break;
case rfbTLS:
#ifndef LIBVNCSERVER_WITH_CLIENT_TLS
rfbClientLog("TLS support was not compiled in\n");
return FALSE;
#else
if (!HandleAnonTLSAuth(client)) return FALSE;
/* After the TLS session is established, sub auth types are expected.
* Note that all following reading/writing are through the TLS session from here.
@ -944,10 +948,15 @@ InitialiseRFBConnection(rfbClient* client)
(int)subAuthScheme);
return FALSE;
}
#endif
break;
case rfbVeNCrypt:
#ifndef LIBVNCSERVER_WITH_CLIENT_TLS
rfbClientLog("TLS support was not compiled in\n");
return FALSE;
#else
if (!HandleVeNCryptAuth(client)) return FALSE;
switch (client->subAuthScheme) {
@ -973,7 +982,7 @@ InitialiseRFBConnection(rfbClient* client)
client->subAuthScheme);
return FALSE;
}
#endif
break;
default:

@ -358,7 +358,9 @@ void rfbClientCleanup(rfbClient* client) {
#endif
#endif
#ifdef LIBVNCSERVER_WITH_CLIENT_TLS
FreeTLS(client);
#endif
if (client->sock >= 0)
close(client->sock);
if (client->listenSock >= 0)

Loading…
Cancel
Save