X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircparser.h;h=c0b17eaf7efde07ce2744d7db43caa0cf94e25aa;hp=2a1543c2f4a494910fa4da25277940b2564de1a7;hb=c194ed5fb3d15e14b9364f9796d3521910dc72fe;hpb=fdfd62334f728bd05470c5191194d55027fec86e diff --git a/src/core/ircparser.h b/src/core/ircparser.h index 2a1543c2..c0b17eaf 100644 --- a/src/core/ircparser.h +++ b/src/core/ircparser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef IRCPARSER_H @@ -28,28 +28,33 @@ class EventManager; class IrcEvent; class NetworkDataEvent; -class IrcParser : public QObject { - Q_OBJECT +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 ¶ms, int minParams); - // no-op if we don't have crypto support! - QByteArray decrypt(Network *network, const QString &target, const QByteArray &message, bool isTopic = false); + // no-op if we don't have crypto support! + 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