aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorNiels Ole Salscheider <niels_ole@salscheider-online.de>2017-09-03 22:00:29 +0200
committerNiels Ole Salscheider <niels_ole@salscheider-online.de>2017-09-04 19:44:01 +0200
commit2a5ccd3bd191b75b9fa148a8fa7f3d3ddc225add (patch)
treed8cd64a20fbe77a78be7c9533787044157190442 /src/server
parent3241e63f07c5fa493788897ddfb87a201205f621 (diff)
Drop support for Qt 4
Diffstat (limited to 'src/server')
-rw-r--r--src/server/QXmppOutgoingServer.cpp6
-rw-r--r--src/server/QXmppServer.cpp4
-rw-r--r--src/server/QXmppServer.h4
3 files changed, 0 insertions, 14 deletions
diff --git a/src/server/QXmppOutgoingServer.cpp b/src/server/QXmppOutgoingServer.cpp
index 3855da4d..2da1628a 100644
--- a/src/server/QXmppOutgoingServer.cpp
+++ b/src/server/QXmppOutgoingServer.cpp
@@ -25,11 +25,7 @@
#include <QSslKey>
#include <QSslSocket>
#include <QTimer>
-#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
#include <QDnsLookup>
-#else
-#include "qdnslookup.h"
-#endif
#include "QXmppConstants_p.h"
#include "QXmppDialback.h"
@@ -137,10 +133,8 @@ void QXmppOutgoingServer::_q_dnsLookupFinished()
port = 5269;
}
-#if (QT_VERSION >= QT_VERSION_CHECK(4, 8, 0))
// set the name the SSL certificate should match
socket()->setPeerVerifyName(d->remoteDomain);
-#endif
// connect to server
info(QString("Connecting to %1:%2").arg(host, QString::number(port)));
diff --git a/src/server/QXmppServer.cpp b/src/server/QXmppServer.cpp
index 13be2169..53b6ba83 100644
--- a/src/server/QXmppServer.cpp
+++ b/src/server/QXmppServer.cpp
@@ -891,11 +891,7 @@ QXmppSslServer::~QXmppSslServer()
delete d;
}
-#if QT_VERSION < 0x050000
void QXmppSslServer::incomingConnection(int socketDescriptor)
-#else
-void QXmppSslServer::incomingConnection(qintptr socketDescriptor)
-#endif
{
QSslSocket *socket = new QSslSocket;
if (!socket->setSocketDescriptor(socketDescriptor)) {
diff --git a/src/server/QXmppServer.h b/src/server/QXmppServer.h
index f6866f92..2734105d 100644
--- a/src/server/QXmppServer.h
+++ b/src/server/QXmppServer.h
@@ -143,11 +143,7 @@ signals:
void newConnection(QSslSocket *socket);
private:
- #if QT_VERSION < 0x050000
void incomingConnection(int socketDescriptor);
- #else
- void incomingConnection(qintptr socketDescriptor);
- #endif
QXmppSslServerPrivate * const d;
};