X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientsyncer.h;h=44e33737fb0b874c62f1d5a6e2227dd4f870a81c;hp=95aee59fe338ccab2a0b823caa23178e1c3706cc;hb=0d1184b010f26a1620366fa705b18f6376b52698;hpb=0c9cd0eef379e1d3e10a75cc8506a7e65f95fd67 diff --git a/src/client/clientsyncer.h b/src/client/clientsyncer.h index 95aee59f..44e33737 100644 --- a/src/client/clientsyncer.h +++ b/src/client/clientsyncer.h @@ -23,9 +23,14 @@ #include #include -#include #include +#ifndef QT_NO_OPENSSL +#include +#else +#include +#endif + class IrcUser; class IrcChannel; @@ -55,6 +60,7 @@ class ClientSyncer : public QObject { void coreSetupSuccess(); void coreSetupFailed(const QString &error); + void encrypted(bool); public slots: void connectToCore(const QVariantMap &); @@ -83,7 +89,10 @@ class ClientSyncer : public QObject { void sessionStateReceived(const QVariantMap &state); void doCoreSetup(const QVariant &setupData); - +#ifndef QT_NO_OPENSSL + void sslErrors(const QList &errors); +#endif + private: QPointer socket; quint32 blockSize;