X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=fe6290413352432049ec1c4a9d67ee50a314cb0f;hp=94e62b152924ee710c29222440102b6add831906;hb=da28b86876edea39e97ffdd4cc5602072c001f93;hpb=6b4a88135c3af2822a88e2dea51e6a1194a45171 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 94e62b15..fe629041 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -46,7 +46,13 @@ public slots: 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 + void handle250(const QString &prefix, const QList ¶ms); // RPL_STATSDLINE + void handle265(const QString &prefix, const QList ¶ms); // RPL_LOCALUSERS + void handle266(const QString &prefix, const QList ¶ms); // RPL_GLOBALUSERS void handle301(const QString &prefix, const QList ¶ms); // RPL_AWAY + void handle307(const QString &prefix, const QList ¶ms); // RPL_WHOISSERVICE + void handle310(const QString &prefix, const QList ¶ms); // RPL_SUSERHOST void handle311(const QString &prefix, const QList ¶ms); // RPL_WHOISUSER void handle312(const QString &prefix, const QList ¶ms); // RPL_WHOISSERVER void handle313(const QString &prefix, const QList ¶ms); // RPL_WHOISOPERATOR @@ -55,6 +61,7 @@ public slots: void handle317(const QString &prefix, const QList ¶ms); // RPL_WHOISIDLE void handle318(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHOIS void handle319(const QString &prefix, const QList ¶ms); // RPL_WHOISCHANNELS + void handle320(const QString &prefix, const QList ¶ms); // RPL_WHOISVIRT (is identified to services) 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... @@ -66,6 +73,9 @@ public slots: void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); +signals: + void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend + private: void tryNextNick(const QString &errnick); bool _whois;