X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Foidentdconfiggenerator.cpp;h=bd4350dac215ba6da4fef84c92ca0be894c311d9;hp=8c5f32ba931b96bb3995df8a46e189ab92c928de;hb=092e6b212637ffbf68800584b7c1f32d1931b602;hpb=84cd3561e97167ffb98ecab0fd2b884ba1d13ada diff --git a/src/core/oidentdconfiggenerator.cpp b/src/core/oidentdconfiggenerator.cpp index 8c5f32ba..bd4350da 100644 --- a/src/core/oidentdconfiggenerator.cpp +++ b/src/core/oidentdconfiggenerator.cpp @@ -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 * @@ -18,11 +18,15 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ +#include + +#include "corenetwork.h" #include "oidentdconfiggenerator.h" -OidentdConfigGenerator::OidentdConfigGenerator(QObject *parent) : +OidentdConfigGenerator::OidentdConfigGenerator(bool strict, QObject *parent) : QObject(parent), - _initialized(false) + _initialized(false), + _strict(strict) { if (!_initialized) init(); @@ -66,10 +70,19 @@ bool OidentdConfigGenerator::init() } +QString OidentdConfigGenerator::sysIdentForIdentity(const CoreIdentity *identity) const { + if (!_strict) { + return identity->ident(); + } + const CoreNetwork *network = qobject_cast(sender()); + return network->coreSession()->strictSysident(); +} + + bool OidentdConfigGenerator::addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort) { Q_UNUSED(localAddress) Q_UNUSED(peerAddress) Q_UNUSED(peerPort) - QString ident = identity->ident(); + const QString ident = sysIdentForIdentity(identity); _quasselConfig.append(_quasselStanzaTemplate.arg(localPort).arg(ident).arg(_configTag).toLatin1());