X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fircserverhandler.h;h=ec9f201a4cf8989ce89795dc656012d6bd24caee;hb=3bb86923bd1b39089abacc4fcb08bb4939ab70e0;hp=c8894de3073af4600c76fe8f5f9155c82f472b27;hpb=aff2b3fc3eb85e246add6ac0612f52912c78d0cf;p=quassel.git diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index c8894de3..ec9f201a 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -54,10 +54,21 @@ public slots: void handle001(QString, QList); // RPL_WELCOME void handle005(QString, QList); // RPL_ISUPPORT + void handle301(QString, QList); // RPL_AWAY + void handle311(QString, QList); // RPL_WHOISUSER + void handle312(QString, QList); // RPL_WHOISSERVER + void handle313(QString, QList); // RPL_WHOISOPERATOR + void handle314(QString, QList); // RPL_WHOWASUSER + void handle315(QString, QList); // RPL_ENDOFWHO + void handle317(QString, QList); // RPL_WHOISIDLE + void handle318(QString, QList); // RPL_ENDOFWHOIS + void handle319(QString, QList); // RPL_WHOISCHANNELS void handle331(QString, QList); // RPL_NOTOPIC void handle332(QString, QList); // RPL_TOPIC void handle333(QString, QList); // Topic set by... + void handle352(QString, QList); // RPL_WHOREPLY void handle353(QString, QList); // RPL_NAMREPLY + void handle369(QString, QList); // RPL_ENDOFWHOWAS void handle432(QString, QList); // ERR_ERRONEUSNICKNAME void handle433(QString, QList); // ERR_NICKNAMEINUSE @@ -65,6 +76,7 @@ public slots: private: void tryNextNick(const QString &errnick); + bool _whois; NetworkConnection *networkConnection; };