summaryrefslogtreecommitdiffstats
path: root/common/rfb/SecurityClient.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/rfb/SecurityClient.cxx')
-rw-r--r--common/rfb/SecurityClient.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/common/rfb/SecurityClient.cxx b/common/rfb/SecurityClient.cxx
index 4d88d678..dcd28bae 100644
--- a/common/rfb/SecurityClient.cxx
+++ b/common/rfb/SecurityClient.cxx
@@ -73,30 +73,24 @@ CSecurity* SecurityClient::GetCSecurity(CConnection* cc, U32 secType)
#ifdef HAVE_GNUTLS
case secTypeTLSNone:
return new CSecurityStack(cc, secTypeTLSNone,
- "TLS with no password",
new CSecurityTLS(cc, true));
case secTypeTLSVnc:
return new CSecurityStack(cc, secTypeTLSVnc,
- "TLS with VNCAuth",
new CSecurityTLS(cc, true),
new CSecurityVncAuth(cc));
case secTypeTLSPlain:
return new CSecurityStack(cc, secTypeTLSPlain,
- "TLS with Username/Password",
new CSecurityTLS(cc, true),
new CSecurityPlain(cc));
case secTypeX509None:
return new CSecurityStack(cc, secTypeX509None,
- "X509 with no password",
new CSecurityTLS(cc, false));
case secTypeX509Vnc:
return new CSecurityStack(cc, secTypeX509Vnc,
- "X509 with VNCAuth",
new CSecurityTLS(cc, false),
new CSecurityVncAuth(cc));
case secTypeX509Plain:
return new CSecurityStack(cc, secTypeX509Plain,
- "X509 with Username/Password",
new CSecurityTLS(cc, false),
new CSecurityPlain(cc));
#endif