X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Foidentdconfiggenerator.h;h=aad24d9530180218a8101e6ff44c59a73bc1bf77;hb=5923f262cc695f0fe0a06757ef3411688747066a;hp=55c06caf3469d2bfeec0bebaf5c79b959ecab598;hpb=9c15e81b15a20e861c707e240c2cfee56bdf4bc9;p=quassel.git diff --git a/src/core/oidentdconfiggenerator.h b/src/core/oidentdconfiggenerator.h index 55c06caf..aad24d95 100644 --- a/src/core/oidentdconfiggenerator.h +++ b/src/core/oidentdconfiggenerator.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2012 by the Quassel Project * + * Copyright (C) 2005-2015 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 OIDENTDCONFIGGENERATOR_H @@ -29,10 +29,10 @@ #include #include -#ifndef Q_OS_WIN32 +#ifdef HAVE_UMASK # include # include -#endif /* Q_OS_WIN32 */ +#endif /* HAVE_UMASK */ #include "quassel.h" #include "coreidentity.h" @@ -56,35 +56,36 @@ class OidentdConfigGenerator : public QObject { - Q_OBJECT + Q_OBJECT public: - explicit OidentdConfigGenerator(QObject *parent = 0); - ~OidentdConfigGenerator(); + explicit OidentdConfigGenerator(QObject *parent = 0); + ~OidentdConfigGenerator(); public slots: - bool addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); - bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); + bool addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); + bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); private: - bool init(); - bool writeConfig(); - bool parseConfig(bool readQuasselStanzas = false); - bool lineByUs(const QByteArray &line); - - bool _initialized; - QDateTime _lastSync; - QFile *_configFile; - QByteArray _parsedConfig; - QByteArray _quasselConfig; - // Mutex isn't strictly necessary at the moment, since with the current invocation in Core only one instance at a time exists - QMutex _mutex; - - QDir _configDir; - QString _configFileName; - QString _configPath; - QString _configTag; - QRegExp _quasselStanzaRx; - QString _quasselStanzaTemplate; + bool init(); + bool writeConfig(); + bool parseConfig(bool readQuasselStanzas = false); + bool lineByUs(const QByteArray &line); + + bool _initialized; + QDateTime _lastSync; + QFile *_configFile; + QByteArray _parsedConfig; + QByteArray _quasselConfig; + // Mutex isn't strictly necessary at the moment, since with the current invocation in Core only one instance at a time exists + QMutex _mutex; + + QDir _configDir; + QString _configFileName; + QString _configPath; + QString _configTag; + QRegExp _quasselStanzaRx; + QString _quasselStanzaTemplate; }; + #endif // OIDENTDCONFIGGENERATOR_H