diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-02-21 13:50:17 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-02-21 13:50:17 +0000 |
commit | 39d7dc043afcf6f94b9c16942765fdb9a6a3202e (patch) | |
tree | ac907df7b57b896075bc5b72c120c8798246340f /common/rfb | |
parent | b2618e5cbc184491e4691bcb383b9669d82a725c (diff) | |
download | tigervnc-39d7dc043afcf6f94b9c16942765fdb9a6a3202e.tar.gz tigervnc-39d7dc043afcf6f94b9c16942765fdb9a6a3202e.zip |
Use VncAuth as the default security type, since TLS causes a significant performance hit on some systems
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4304 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb')
-rw-r--r-- | common/rfb/SecurityServer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/rfb/SecurityServer.cxx b/common/rfb/SecurityServer.cxx index 3866fa35..76ece770 100644 --- a/common/rfb/SecurityServer.cxx +++ b/common/rfb/SecurityServer.cxx @@ -39,7 +39,7 @@ StringParameter SecurityServer::secTypes ("SecurityTypes", "Specify which security scheme to use (None, VncAuth)", #ifdef HAVE_GNUTLS - "TLSVnc,VncAuth", + "VncAuth,TLSVnc", #else "VncAuth", #endif |