X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=8f57b3016a5396ed3628b9fe7896091966a1a85c;hb=47a6910aed00018c7230cc2cc90ae8e80fa77dda;hp=3b31f0ded6484eb299983bc75fc808e3e3a035a1;hpb=4c80eeb2d07b5ca75fd399b51c939961fdff1670;p=quassel.git diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index 3b31f0de..8f57b301 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -123,6 +123,7 @@ public slots: Cipher *cipher(const QString &recipient); QByteArray cipherKey(const QString &recipient) const; void setCipherKey(const QString &recipient, const QByteArray &key); + bool cipherUsesCBC(const QString &target); #endif void setAutoWhoEnabled(bool enabled); @@ -225,6 +226,7 @@ private: QTimer _pingTimer; uint _lastPingTime; uint _pingCount; + bool _sendPings; QStringList _autoWhoQueue; QHash _autoWhoPending; @@ -237,9 +239,6 @@ private: QList _msgQueue; QString _requestedUserModes; // 2 strings separated by a '-' character. first part are requested modes to add, the second to remove - - // Blowfish key map - QHash _cipherKeys; };