X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Foidentdconfiggenerator.h;h=375636cedfa25c0e69a2cd07d18d3ea3adda79e7;hp=aad24d9530180218a8101e6ff44c59a73bc1bf77;hb=092e6b212637ffbf68800584b7c1f32d1931b602;hpb=921e54680da16fcf2adb7a90506875aceb6633a4 diff --git a/src/core/oidentdconfiggenerator.h b/src/core/oidentdconfiggenerator.h index aad24d95..375636ce 100644 --- a/src/core/oidentdconfiggenerator.h +++ b/src/core/oidentdconfiggenerator.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 @@ -58,7 +59,11 @@ class OidentdConfigGenerator : public QObject { Q_OBJECT public: - explicit OidentdConfigGenerator(QObject *parent = 0); + /** + * @param strict If false, any identity a user chooses is reported to servers as authoritative. + * If true, the user's quassel username is always reported. + */ + explicit OidentdConfigGenerator(bool strict = false, QObject *parent = 0); ~OidentdConfigGenerator(); public slots: @@ -66,12 +71,14 @@ public slots: bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); 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;