X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=0d725f6edd41cebcde4bf3044619e50063409426;hp=90db4b4550c84f24edd63385e22c0a0e097ade94;hb=328b48e6fbd78d6158eb55296c0843fc5a41bcfa;hpb=4af42efb44f286b6d7fd18a05a74dd6d8cace394 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index 90db4b45..0d725f6e 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,31 @@ 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 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); + private: void tryNextNick(const QString &errnick, bool erroneus = false); bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); @@ -90,6 +116,11 @@ private: bool _whois; QString _target; + + // structure to organize netsplits + // key: quit message + // value: the corresponding netsplit object + QHash _netsplits; };