X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsslserver.h;h=d0efde21d01d9ed81c11f73ef5a5de4a7ef42147;hp=6b5e5c8f204aa3e289a79b1b8792ea752cb7628a;hb=a5455d1ea8785e864ce4b513e63283ed156d4872;hpb=ffcc8befd931340321e3aa2029cb5667373fd584 diff --git a/src/core/sslserver.h b/src/core/sslserver.h index 6b5e5c8f..d0efde21 100644 --- a/src/core/sslserver.h +++ b/src/core/sslserver.h @@ -39,7 +39,7 @@ public: virtual inline const QSslCertificate &certificate() const { return _cert; } virtual inline const QSslKey &key() const { return _key; } - virtual inline bool certIsValid() const { return _certIsValid; } + virtual inline bool isCertValid() const { return _isCertValid; } protected: virtual void incomingConnection(int socketDescriptor); @@ -49,7 +49,8 @@ private: QLinkedList _pendingConnections; QSslCertificate _cert; QSslKey _key; - bool _certIsValid; + QList _ca; + bool _isCertValid; }; #endif //HAVE_SSL