X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircserverhandler.h;h=406b0a38237d4daf06edde7aa097feac69746066;hp=fe6290413352432049ec1c4a9d67ee50a314cb0f;hb=a5dfcc8ecf8b81025d24b3c5c816169e3e030ea4;hpb=7a1202a4d6b127521ac1d460aed45ffe9383ebf0 diff --git a/src/core/ircserverhandler.h b/src/core/ircserverhandler.h index fe629041..406b0a38 100644 --- a/src/core/ircserverhandler.h +++ b/src/core/ircserverhandler.h @@ -18,8 +18,8 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _IRCSERVERHANDLER_H_ -#define _IRCSERVERHANDLER_H_ +#ifndef IRCSERVERHANDLER_H +#define IRCSERVERHANDLER_H #include "basichandler.h" @@ -27,7 +27,7 @@ class IrcServerHandler : public BasicHandler { Q_OBJECT public: - IrcServerHandler(NetworkConnection *parent); + IrcServerHandler(CoreNetwork *parent); ~IrcServerHandler(); void handleServerMsg(QByteArray rawMsg); @@ -40,6 +40,7 @@ public slots: 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); @@ -51,6 +52,8 @@ public slots: 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 @@ -62,10 +65,14 @@ public slots: 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 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 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 @@ -73,11 +80,9 @@ public slots: void defaultHandler(QString cmd, const QString &prefix, const QList ¶ms); -signals: - void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend - private: void tryNextNick(const QString &errnick); + bool checkParamCount(const QString &methodName, const QList ¶ms, int minParams); bool _whois; };