X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=a4005e322af754662be3bec619ab04dbbd75ee23;hb=cc7f376eb105f7bf931fb7f96c9601a7b3f69511;hp=562c422d1a4aa8e5665a0912743bc74c96a5eddb;hpb=b5385b3ddf6f0e8df8f0af7275b59dcc1fcd0ed1;p=quassel.git diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 562c422d..a4005e32 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 @@ -72,6 +78,7 @@ signals: private: void tryNextNick(const QString &errnick); + bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); bool _whois; };