X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.cpp;h=ccb82a50633ee7f7724035caedf9ebafe7435dd2;hp=02b81b76fb5743584f12a62beedf500f962bcf5e;hb=921e54680da16fcf2adb7a90506875aceb6633a4;hpb=393ac8b4bca9db98f297cb4756ef2e79364bf6f0 diff --git a/src/core/coreircchannel.cpp b/src/core/coreircchannel.cpp index 02b81b76..ccb82a50 100644 --- a/src/core/coreircchannel.cpp +++ b/src/core/coreircchannel.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2010 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. * ***************************************************************************/ #include "coreircchannel.h" @@ -23,46 +23,48 @@ INIT_SYNCABLE_OBJECT(CoreIrcChannel) CoreIrcChannel::CoreIrcChannel(const QString &channelname, Network *network) - : IrcChannel(channelname, network), + : IrcChannel(channelname, network), _receivedWelcomeMsg(false) { #ifdef HAVE_QCA2 - _cipher = 0; + _cipher = 0; #endif } -CoreIrcChannel::~CoreIrcChannel() { + +CoreIrcChannel::~CoreIrcChannel() +{ #ifdef HAVE_QCA2 - delete _cipher; + delete _cipher; #endif } + #ifdef HAVE_QCA2 -Cipher *CoreIrcChannel::cipher() const { - if(!_cipher) - _cipher = new Cipher(); +Cipher *CoreIrcChannel::cipher() const +{ + if (!_cipher) + _cipher = new Cipher(); - return _cipher; + return _cipher; } -void CoreIrcChannel::setEncrypted(bool e) { - if(!Cipher::neededFeaturesAvailable()) - return; - if(e) { - if(topic().isEmpty()) - return; +void CoreIrcChannel::setEncrypted(bool e) +{ + IrcChannel::setEncrypted(e); - QByteArray key = qobject_cast(network())->cipherKey(name()); - if(key.isEmpty()) - return; + if (!Cipher::neededFeaturesAvailable()) + return; - if(!cipher()->setKey(key)) - return; + if (e) { + if (topic().isEmpty()) + return; - QByteArray decrypted = cipher()->decryptTopic(topic().toAscii()); - setTopic(decodeString(decrypted)); - } + QByteArray decrypted = cipher()->decryptTopic(topic().toLatin1()); + setTopic(decodeString(decrypted)); + } } + #endif