X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=ec9f201a4cf8989ce89795dc656012d6bd24caee;hp=8a0d3841dd5cafc4aac409d7f9587a96a0f65d1d;hb=c8a1817d1843e987794f95f66ef2da93fa75286f;hpb=e008cd12ef319c4b5f9fe5a8cc1524829551771d diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 8a0d3841..ec9f201a 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -27,7 +27,7 @@ class IrcServerHandler : public BasicHandler { Q_OBJECT public: - IrcServerHandler(Server *parent = 0); + IrcServerHandler(NetworkConnection *parent); ~IrcServerHandler(); void handleServerMsg(QByteArray rawMsg); @@ -54,17 +54,30 @@ 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 void defaultHandler(QString cmd, QString prefix, QList params); - private: - Server *server; +private: + void tryNextNick(const QString &errnick); + bool _whois; + NetworkConnection *networkConnection; };