X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcore%2Fircparser.h;h=591a4ee8f3ebd1f147218fb902f89844b97c40d5;hb=cc6e7c08709c4e761e2fd9c2e322751015497003;hp=04b7d06e125a841aeac105c45e4195a12b798b2a;hpb=04315f46a16fc3627218377071e008b6b9744992;p=quassel.git diff --git a/src/core/ircparser.h b/src/core/ircparser.h index 04b7d06e..591a4ee8 100644 --- a/src/core/ircparser.h +++ b/src/core/ircparser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -33,25 +33,27 @@ class IrcParser : public QObject Q_OBJECT public: - IrcParser(CoreSession *session); + IrcParser(CoreSession* session); - inline CoreSession *coreSession() const { return _coreSession; } - inline EventManager *eventManager() const { return coreSession()->eventManager(); } + inline CoreSession* coreSession() const { return _coreSession; } + inline EventManager* eventManager() const { return coreSession()->eventManager(); } signals: - void newEvent(Event *); + void newEvent(Event*); protected: - Q_INVOKABLE void processNetworkIncoming(NetworkDataEvent *e); + Q_INVOKABLE void processNetworkIncoming(NetworkDataEvent* e); - bool checkParamCount(const QString &cmd, const QList ¶ms, int minParams); + bool checkParamCount(const QString& cmd, const QList& params, int minParams); // no-op if we don't have crypto support! - QByteArray decrypt(Network *network, const QString &target, const QByteArray &message, bool isTopic = false); + QByteArray decrypt(Network* network, const QString& target, const QByteArray& message, bool isTopic = false); private: - CoreSession *_coreSession; -}; + CoreSession* _coreSession; + bool _debugLogRawIrc; ///< If true, include raw IRC socket messages in the debug log + qint32 _debugLogRawNetId; ///< Network ID for logging raw IRC socket messages, or -1 for all +}; #endif