summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/ssl/shared/tlshelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/network/ssl/shared/tlshelpers.h')
-rw-r--r--tests/auto/network/ssl/shared/tlshelpers.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/network/ssl/shared/tlshelpers.h b/tests/auto/network/ssl/shared/tlshelpers.h
new file mode 100644
index 0000000000..de3c2ea51a
--- /dev/null
+++ b/tests/auto/network/ssl/shared/tlshelpers.h
@@ -0,0 +1,31 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QtNetwork/qtnetworkglobal.h>
+
+#if QT_CONFIG(ssl)
+
+#include <QtNetwork/qsslsocket.h>
+
+#endif // QT_CONFIG(ssl)
+
+#include <QtCore/qstring.h>
+#include <QtCore/qglobal.h>
+
+QT_BEGIN_NAMESPACE
+
+namespace TlsAux {
+
+inline bool classImplemented(QSsl::ImplementedClass cl)
+{
+#if QT_CONFIG(ssl)
+ return QSslSocket::implementedClasses().contains(cl);
+#endif
+ return cl == QSsl::ImplementedClass::Certificate; // This is the only thing our 'cert-only' supports.
+}
+
+} // namespace TlsAux
+
+
+
+QT_END_NAMESPACE