diff options
author | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:16:04 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2010-04-23 14:16:04 +0000 |
commit | b10489b03966ce86ae091156ba6f021bc5d93377 (patch) | |
tree | c18b92163091de40a695b30f3ef58ab67296219b /win/vncviewer | |
parent | dfe19cfff8deed3adbf0b4190763bbd243e56d07 (diff) | |
download | tigervnc-b10489b03966ce86ae091156ba6f021bc5d93377.tar.gz tigervnc-b10489b03966ce86ae091156ba6f021bc5d93377.zip |
[Development] Implement VeNCrypt type support on client side. Currently only
TLSNone and TLSVnc VeNCrypt subtypes are implemented.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4046 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'win/vncviewer')
-rw-r--r-- | win/vncviewer/CConn.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/vncviewer/CConn.cxx b/win/vncviewer/CConn.cxx index 97ef5201..2e0c3a41 100644 --- a/win/vncviewer/CConn.cxx +++ b/win/vncviewer/CConn.cxx @@ -102,7 +102,7 @@ bool CConn::initialise(network::Socket* s, bool reverse) { // - Set which auth schemes we support, in order of preference addSecType(secTypeVncAuth); addSecType(secTypeNone); - security->upg = this; /* Security instance is created in CConnection costructor. */ + CSecurity::upg = this; // Start the RFB protocol sock = s; |