summaryrefslogtreecommitdiffstats
path: root/common/rfb/SSecurity.h
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2010-04-23 14:07:41 +0000
committerAdam Tkac <atkac@redhat.com>2010-04-23 14:07:41 +0000
commita6578bfc986695bf9e5d4272b6d2e57516aa4cbf (patch)
treeff36c03b224765b677ca1c13d670c41d5b47e2c4 /common/rfb/SSecurity.h
parent1d15e2d60a171a43c83e51a1343727701ac34f4b (diff)
downloadtigervnc-a6578bfc986695bf9e5d4272b6d2e57516aa4cbf.tar.gz
tigervnc-a6578bfc986695bf9e5d4272b6d2e57516aa4cbf.zip
[Development] Replace SSecurityFactoryStandard class by simplier Security class.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4039 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/rfb/SSecurity.h')
-rw-r--r--common/rfb/SSecurity.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/common/rfb/SSecurity.h b/common/rfb/SSecurity.h
index 108985b3..afc744e4 100644
--- a/common/rfb/SSecurity.h
+++ b/common/rfb/SSecurity.h
@@ -65,20 +65,5 @@ namespace rfb {
virtual const char* getUserName() const = 0;
};
- // SSecurityFactory creates new SSecurity instances for
- // particular security types.
- // The instances must be destroyed by calling destroy()
- // on them when done.
- // getSecTypes returns a list of the security types that are both configured
- // and actually supported. Which configuration is considered depends on the
- // reverseConnection parameter.
- class SSecurityFactory {
- public:
- virtual ~SSecurityFactory() {}
- virtual SSecurity* getSSecurity(rdr::U8 secType, bool noAuth=false)=0;
- virtual void getSecTypes(std::list<rdr::U8>* secTypes,
- bool reverseConnection) = 0;
- };
-
}
#endif