X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=30f2d1d62f906d3e8b32ddeab47e2ebd72475b33;hb=ecf6e74621aad76c35e67a0df3faafd994fce9dc;hp=79480625890829f7aad4cb3589c2a9cc1e8b0f09;hpb=c8758c4d265a9fe553aa587e8ad0b89407a9d65c;p=quassel.git diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 79480625..30f2d1d6 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -34,6 +34,7 @@ public: void handleServerMsg(QByteArray rawMsg); public slots: + void handleInvite(const QString &prefix, const QList ¶ms); void handleJoin(const QString &prefix, const QList ¶ms); void handleKick(const QString &prefix, const QList ¶ms); void handleMode(const QString &prefix, const QList ¶ms); @@ -75,6 +76,7 @@ public slots: void handle331(const QString &prefix, const QList ¶ms); // RPL_NOTOPIC void handle332(const QString &prefix, const QList ¶ms); // RPL_TOPIC void handle333(const QString &prefix, const QList ¶ms); // Topic set by... + void handle341(const QString &prefix, const QList ¶ms); // RPL_INVITING void handle352(const QString &prefix, const QList ¶ms); // RPL_WHOREPLY void handle353(const QString &prefix, const QList ¶ms); // RPL_NAMREPLY void handle369(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOWAS @@ -129,7 +131,10 @@ private: // key: quit message // value: the corresponding netsplit object QHash _netsplits; -}; +#ifdef HAVE_QCA2 + QByteArray decrypt(const QString &target, const QByteArray &message, bool isTopic = false); +#endif +}; #endif