diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-21 21:29:30 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-21 21:29:30 +0200 |
| commit | 6ef3d6a41f07a2f43a9b69f4e75adbffe634ea09 (patch) | |
| tree | 791ad53823e47ecff837ec6004aa80c8fb1e1445 /src/protocolhandler.hpp | |
| parent | 6225064a008eccb9099ed2db49dad04c5f6d0550 (diff) | |
Adds option for manually trusting a TLS server.
Diffstat (limited to 'src/protocolhandler.hpp')
| -rw-r--r-- | src/protocolhandler.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/protocolhandler.hpp b/src/protocolhandler.hpp index 2fc60db..c5bb653 100644 --- a/src/protocolhandler.hpp +++ b/src/protocolhandler.hpp @@ -61,6 +61,9 @@ signals: //! The server wants us to use a client certificate void certificateRequired(QString const & info); + + //! The server uses TLS and has a certificate. + void hostCertificateLoaded(QSslCertificate const & cert); protected: void emitNetworkError(QAbstractSocket::SocketError error_code, QString const & textual_description); }; |
