summaryrefslogtreecommitdiffstats
path: root/src/crsm.cpp
diff options
context:
space:
mode:
authorMarkus Mittendrein <git@maxmitti.tk>2016-04-29 23:05:46 +0200
committerMarkus Mittendrein <git@maxmitti.tk>2016-04-29 23:05:46 +0200
commit721dffdf9d8d0efa2474fcfa3aa3aa7616d317c3 (patch)
treed70aba26239c9ae3298b8eaa6f2212a8ee22ed90 /src/crsm.cpp
parent05fcb2c8e694d55de036aaaec92a7bf29e308bc5 (diff)
downloadmanager-721dffdf9d8d0efa2474fcfa3aa3aa7616d317c3.tar.gz
manager-721dffdf9d8d0efa2474fcfa3aa3aa7616d317c3.zip
Add option IRC.SSL to support SSL-connections in IRC
Diffstat (limited to 'src/crsm.cpp')
-rw-r--r--src/crsm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crsm.cpp b/src/crsm.cpp
index 1b782c6..9e4d887 100644
--- a/src/crsm.cpp
+++ b/src/crsm.cpp
@@ -1634,6 +1634,7 @@ void CRSM::prepareAndConnectIrc()
connection->setRealName(Config.IRC.RealName);
connection->setReconnectDelay(Config.IRC.ReconnectDelay);
connection->setPassword(Config.IRC.Password);
+ connection->setSecure(Config.IRC.SSL);
connect(connection, SIGNAL(messageReceived(IrcMessage*)), this, SLOT(ircMessageReceived(IrcMessage*)));
connect(connection, SIGNAL(connected()), this, SLOT(ircConnected()));