diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-11 08:13:42 +0100 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2015-03-11 08:13:42 +0100 |
| commit | 9a54d355a672340f7b78f58f382c83c0f6974655 (patch) | |
| tree | 42a1e3f53b789fe2bad2b7c8689f78737077f24e /src/client/QXmppClient.h | |
| parent | 02294cc0cf4e9a658da33e8d91896a4b6f2f9e8c (diff) | |
| download | qxmpp-9a54d355a672340f7b78f58f382c83c0f6974655.tar.gz | |
Add a QXmppClient::sslErrors signal to report SSL errors.
Diffstat (limited to 'src/client/QXmppClient.h')
| -rw-r--r-- | src/client/QXmppClient.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/client/QXmppClient.h b/src/client/QXmppClient.h index b2ca9b96..c42d05ed 100644 --- a/src/client/QXmppClient.h +++ b/src/client/QXmppClient.h @@ -31,6 +31,8 @@ #include "QXmppLogger.h" #include "QXmppPresence.h" +class QSslError; + class QXmppClientExtension; class QXmppClientPrivate; class QXmppPresence; @@ -212,6 +214,10 @@ signals: /// management, setting-getting vCards etc is done using iq stanzas. void iqReceived(const QXmppIq &iq); + /// This signal is emitted to indicate that one or more SSL errors were + /// encountered while establishing the identity of the server. + void sslErrors(const QList<QSslError> &errors); + /// This signal is emitted when the client state changes. void stateChanged(QXmppClient::State state); |
