X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=f4744d9236c0e227b07407ce47b3cd0a81086f4a;hp=7b458509bc6ddbd1c27a156b174125e611ec6d6e;hb=77a021d6d237abc3b54277584c1bedfecf0ceda2;hpb=6f0a153a674317d77233139fc50a2985af86e36e diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index 7b458509..f4744d92 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -41,9 +41,7 @@ #include "coresession.h" class CoreIdentity; -class IrcServerHandler; class CoreUserInputHandler; -class CtcpHandler; class CoreIgnoreListManager; class CoreNetwork : public Network { @@ -59,9 +57,7 @@ public: inline CoreSession *coreSession() const { return _coreSession; } inline CoreNetworkConfig *networkConfig() const { return coreSession()->networkConfig(); } - inline IrcServerHandler *ircServerHandler() const { return _ircServerHandler; } inline CoreUserInputHandler *userInputHandler() const { return _userInputHandler; } - inline CtcpHandler *ctcpHandler() const { return _ctcpHandler; } inline CoreIgnoreListManager *ignoreListManager() { return coreSession()->ignoreListManager(); } //! Decode a string using the server (network) decoding. @@ -115,6 +111,7 @@ public slots: // Blowfish stuff #ifdef HAVE_QCA2 + Cipher *cipher(const QString &recipient) const; QByteArray cipherKey(const QString &recipient) const; void setCipherKey(const QString &recipient, const QByteArray &key); #endif @@ -192,9 +189,7 @@ private: QTcpSocket socket; #endif - IrcServerHandler *_ircServerHandler; CoreUserInputHandler *_userInputHandler; - CtcpHandler *_ctcpHandler; QHash _channelKeys; // stores persistent channels and their passwords, if any