X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=2f9623cbfdb61e11d91ef5e35c4235e9ef5433a1;hp=86eaff2385458a918882fd670ba8243d23e6f269;hb=bd6311ec1d07e4daf082b5f752ef6b46d7808430;hpb=513c0edce6f4c69f16e6a00c144877e8d5940096 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 86eaff23..2f9623cb 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); @@ -45,7 +46,8 @@ public slots: void handlePrivmsg(const QString &prefix, const QList ¶ms); void handleQuit(const QString &prefix, const QList ¶ms); void handleTopic(const QString &prefix, const QList ¶ms); - + void handleCap(const QString &prefix, const QList ¶ms); // CAP framework + void handleAuthenticate(); // SASL auth - no params void handle001(const QString &prefix, const QList ¶ms); // RPL_WELCOME void handle005(const QString &prefix, const QList ¶ms); // RPL_ISUPPORT void handle221(const QString &prefix, const QList ¶ms); // RPL_UMODEIS @@ -71,14 +73,17 @@ public slots: void handle324(const QString &prefix, const QList ¶ms); // RPL_CHANNELMODEIS void handle328(const QString &prefix, const QList ¶ms); // RPL_??? (channel homepage) void handle329(const QString &prefix, const QList ¶ms); // RPL_??? (channel creation time) + void handle330(const QString &prefix, const QList ¶ms); // RPL_WHOISACCOUNT (quakenet/snircd/undernet) 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 void handle432(const QString &prefix, const QList ¶ms); // ERR_ERRONEUSNICKNAME void handle433(const QString &prefix, const QList ¶ms); // ERR_NICKNAMEINUSE + void handle437(const QString &prefix, const QList ¶ms); // ERR_UNAVAILRESOURCE void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); @@ -127,7 +132,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