X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=f035eb9aff45e18970eaa1acd8aea41b472b82a4;hp=90db4b4550c84f24edd63385e22c0a0e097ade94;hb=fd80315c076ede937f5d51ba6f8061a32d0107ec;hpb=4ce4f3a6b08bba1a846abf135f5bbcbe15fb060a diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 90db4b45..f035eb9a 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -22,6 +22,7 @@ #define IRCSERVERHANDLER_H #include "basichandler.h" +#include "netsplit.h" class IrcServerHandler : public BasicHandler { Q_OBJECT @@ -81,6 +82,28 @@ public slots: 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 quitMessage The message we received when the netsplit occured + */ + void handleNetsplitJoin(const QString &channel, const QStringList &users, 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(); + private: void tryNextNick(const QString &errnick, bool erroneus = false); bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); @@ -90,6 +113,11 @@ private: bool _whois; QString _target; + + // structure to organize netsplits + // key: quit message + // value: the corresponding netsplit object + QHash _netsplits; };