diff options
Diffstat (limited to 'common/rfb/CSecurityTLS.h')
-rw-r--r-- | common/rfb/CSecurityTLS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rfb/CSecurityTLS.h b/common/rfb/CSecurityTLS.h index e726d1e9..6791a4ad 100644 --- a/common/rfb/CSecurityTLS.h +++ b/common/rfb/CSecurityTLS.h @@ -42,9 +42,9 @@ namespace rfb { class UserMsgBox; class CSecurityTLS : public CSecurity { public: - CSecurityTLS(bool _anon); + CSecurityTLS(CConnection* cc, bool _anon); virtual ~CSecurityTLS(); - virtual bool processMsg(CConnection* cc); + virtual bool processMsg(); virtual int getType() const { return anon ? secTypeTLSNone : secTypeX509None; } virtual const char* description() const { return anon ? "TLS Encryption without VncAuth" : "X509 Encryption without VncAuth"; } |