diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2016-04-29 23:05:46 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2016-04-29 23:05:46 +0200 |
| commit | 721dffdf9d8d0efa2474fcfa3aa3aa7616d317c3 (patch) | |
| tree | d70aba26239c9ae3298b8eaa6f2212a8ee22ed90 /src/crsm.cpp | |
| parent | 05fcb2c8e694d55de036aaaec92a7bf29e308bc5 (diff) | |
| download | manager-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.cpp | 1 |
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())); |
