aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/Security.cxx
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2010-07-21 09:19:00 +0000
committerAdam Tkac <atkac@redhat.com>2010-07-21 09:19:00 +0000
commit21b61a5c03d3f4ac72965e3ca28c710e2f54b35d (patch)
treec2600962534b4387acf9f2d6087096eb053e05aa /common/rfb/Security.cxx
parentf39671def2af442dde86764445b20714acbba0b0 (diff)
downloadtigervnc-21b61a5c03d3f4ac72965e3ca28c710e2f54b35d.tar.gz
tigervnc-21b61a5c03d3f4ac72965e3ca28c710e2f54b35d.zip
[Development] Rename SSecurityTLSBase source/class to SSecurityTLS.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4108 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/Security.cxx')
-rw-r--r--common/rfb/Security.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/rfb/Security.cxx b/common/rfb/Security.cxx
index 6462edcf..d2f40bec 100644
--- a/common/rfb/Security.cxx
+++ b/common/rfb/Security.cxx
@@ -41,7 +41,7 @@
#ifdef HAVE_GNUTLS
#include <rfb/CSecurityTLS.h>
#include <rfb/CSecurityX509.h>
-#include <rfb/SSecurityTLSBase.h>
+#include <rfb/SSecurityTLS.h>
#endif
#include <rfb/util.h>
@@ -124,13 +124,13 @@ SSecurity* Security::GetSSecurity(U32 secType)
case secTypeVeNCrypt: return new SSecurityVeNCrypt(this);
#ifdef HAVE_GNUTLS
case secTypeTLSNone:
- return new SSecurityStack(secTypeTLSNone, new SSecurityTLSBase(true));
+ return new SSecurityStack(secTypeTLSNone, new SSecurityTLS(true));
case secTypeTLSVnc:
- return new SSecurityStack(secTypeTLSVnc, new SSecurityTLSBase(true), new SSecurityVncAuth());
+ return new SSecurityStack(secTypeTLSVnc, new SSecurityTLS(true), new SSecurityVncAuth());
case secTypeX509None:
- return new SSecurityStack(secTypeX509None, new SSecurityTLSBase(false));
+ return new SSecurityStack(secTypeX509None, new SSecurityTLS(false));
case secTypeX509Vnc:
- return new SSecurityStack(secTypeX509None, new SSecurityTLSBase(false), new SSecurityVncAuth());
+ return new SSecurityStack(secTypeX509None, new SSecurityTLS(false), new SSecurityVncAuth());
#endif
}