X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fircserverhandler.h;h=52ecb6a56435bec240b45c987f96cb9011534551;hb=29a45f620131394d4b80ad8c4a58b8acb359df76;hp=94416a0929a29031357a33a5878765e01456611a;hpb=5ff4265bbd3a682a6d6542480760eaf4a2b85d77;p=quassel.git diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 94416a09..52ecb6a5 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -34,50 +34,11 @@ public: void handleServerMsg(QByteArray rawMsg); public slots: - void handleJoin(const QString &prefix, const QList ¶ms); - void handleMode(const QString &prefix, const QList ¶ms); void handleNotice(const QString &prefix, const QList ¶ms); - void handlePing(const QString &prefix, const QList ¶ms); void handlePrivmsg(const QString &prefix, const QList ¶ms); - void handleQuit(const QString &prefix, const QList ¶ms); - void handle324(const QString &prefix, const QList ¶ms); // RPL_CHANNELMODEIS - 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);