X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=52ecb6a56435bec240b45c987f96cb9011534551;hp=652c808e6952ba600e8085292829de3dcd0d8dfc;hb=712781ef33198acb7267e02ee6f8f9bfc8598d5a;hpb=326a0d0783c8ecffb6a7bae02fd74f66bd4242fa diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 652c808e..52ecb6a5 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -34,88 +34,11 @@ 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); - void handleNick(const QString &prefix, const QList ¶ms); void handleNotice(const QString &prefix, const QList ¶ms); - void handlePart(const QString &prefix, const QList ¶ms); - void handlePing(const QString &prefix, const QList ¶ms); - void handlePong(const QString &prefix, const QList ¶ms); 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 - 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 handle305(const QString &prefix, const QList ¶ms); // RPL_UNAWAY - void handle306(const QString &prefix, const QList ¶ms); // RPL_NOWAWAY - 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 - void handle314(const QString &prefix, const QList ¶ms); // RPL_WHOWASUSER - void handle315(const QString &prefix, const QList ¶ms); // RPL_ENDOFWHO - 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 handle322(const QString &prefix, const QList ¶ms); // RPL_LIST - void handle323(const QString &prefix, const QList ¶ms); // RPL_LISTEND - 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 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 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); -private slots: - //! Joins after a netsplit - /** This slot handles a bulk-join after a netsplit is over - * \param channel The channel the users joined - * \param users The list of users that joind the channel - * \param modes The list of modes the users get set - * \param quitMessage The message we received when the netsplit occured - */ - void handleNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes, const QString &quitMessage); - - //! Quits after a netsplit - /** This slot handles a bulk-quit after a netsplit occured - * \param channel The channel the users quitted - * \param users The list of users that got split - * \param quitMessage The message we received when the netsplit occured - */ - void handleNetsplitQuit(const QString &channel, const QStringList &users, const QString &quitMessage); - - //! Netsplit finished - /** This slot deletes the netsplit object that sent the finished() signal - */ - void handleNetsplitFinished(); - - void handleEarlyNetsplitJoin(const QString &channel, const QStringList &users, const QStringList &modes); - - //! Destroy any existing netsplits - /** This slot deletes all netsplit objects - * Used to get rid of existing netsplits on network reconnect - */ - void destroyNetsplits(); - private: void tryNextNick(const QString &errnick, bool erroneus = false); bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams);