[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
diff --git a/common/rfb/CSecurityVncAuth.h b/common/rfb/CSecurityVncAuth.h
index 820222f..391ed23 100644
--- a/common/rfb/CSecurityVncAuth.h
+++ b/common/rfb/CSecurityVncAuth.h
@@ -23,17 +23,13 @@
namespace rfb {
- class UserPasswdGetter;
-
class CSecurityVncAuth : public CSecurity {
public:
- CSecurityVncAuth(UserPasswdGetter* pg);
- virtual ~CSecurityVncAuth();
+ CSecurityVncAuth(void) {}
+ virtual ~CSecurityVncAuth() {}
virtual bool processMsg(CConnection* cc);
virtual int getType() const {return secTypeVncAuth;};
virtual const char* description() const {return "No Encryption";}
- private:
- UserPasswdGetter* upg;
};
}
#endif