From 721dffdf9d8d0efa2474fcfa3aa3aa7616d317c3 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Fri, 29 Apr 2016 23:05:46 +0200 Subject: Add option IRC.SSL to support SSL-connections in IRC --- src/crsm.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/crsm.cpp') 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())); -- cgit v1.2.3-54-g00ecf