X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Foidentdconfiggenerator.h;h=7e13d585656af86019cd736d1f1ba0fb9bd2fb0c;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hp=eb936d8e9c108f3cd302f5c482fddffa80b90ddf;hpb=9d54503555534a2c554f09a33df6afa33d6308ec;p=quassel.git diff --git a/src/core/oidentdconfiggenerator.h b/src/core/oidentdconfiggenerator.h index eb936d8e..7e13d585 100644 --- a/src/core/oidentdconfiggenerator.h +++ b/src/core/oidentdconfiggenerator.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 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 * @@ -22,6 +22,7 @@ #define OIDENTDCONFIGGENERATOR_H #include +#include #include #include #include @@ -29,11 +30,6 @@ #include #include -#ifdef HAVE_UMASK -# include -# include -#endif /* HAVE_UMASK */ - #include "quassel.h" #include "coreidentity.h" @@ -62,16 +58,22 @@ public: ~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, + qint64 socketId); + bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, + quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort, + qint64 socketId); private: + QString sysIdentForIdentity(const CoreIdentity *identity) const; bool init(); bool writeConfig(); bool parseConfig(bool readQuasselStanzas = false); bool lineByUs(const QByteArray &line); bool _initialized; + bool _strict; QDateTime _lastSync; QFile *_configFile; QByteArray _parsedConfig;