diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2014-04-06 12:21:40 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2014-04-06 12:21:40 +0200 |
| commit | 88e35246fed9345f540e7f6eb749097fd74f5cfb (patch) | |
| tree | 0bb469a350c2be7febc5c7dde128e9ba58b411c9 /src/client/QXmppOutgoingClient.cpp | |
| parent | 89abcd28004dec5011cfa597a923ead8c542eb0d (diff) | |
| download | qxmpp-88e35246fed9345f540e7f6eb749097fd74f5cfb.tar.gz | |
add support for legacy SSL
Diffstat (limited to 'src/client/QXmppOutgoingClient.cpp')
| -rw-r--r-- | src/client/QXmppOutgoingClient.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/client/QXmppOutgoingClient.cpp b/src/client/QXmppOutgoingClient.cpp index 0ee1d1af..666b0365 100644 --- a/src/client/QXmppOutgoingClient.cpp +++ b/src/client/QXmppOutgoingClient.cpp @@ -129,7 +129,16 @@ void QXmppOutgoingClientPrivate::connectToHost(const QString &host, quint16 port #endif // connect to host - q->socket()->connectToHost(host, port); + const QXmppConfiguration::StreamSecurityMode localSecurity = q->configuration().streamSecurityMode(); + if (localSecurity == QXmppConfiguration::LegacySSL) { + if (!q->socket()->supportsSsl()) { + q->warning("Not connecting as legacy SSL was requested, but SSL support is not available"); + return; + } + q->socket()->connectToHostEncrypted(host, port); + } else { + q->socket()->connectToHost(host, port); + } } /// Constructs an outgoing client stream. |
