blob: 6bd00a6041e789bf075708677dfb07229e427bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Index: src/plugins/tls/openssl/qopenssl_p.h
--- src/plugins/tls/openssl/qopenssl_p.h.orig
+++ src/plugins/tls/openssl/qopenssl_p.h
@@ -70,6 +70,13 @@
QT_BEGIN_NAMESPACE
+#ifndef DTLS_ANY_VERSION
+#define DTLS_ANY_VERSION 0x1FFFF
+#endif
+#ifndef TLS_ANY_VERSION
+#define TLS_ANY_VERSION 0x10000
+#endif
+
struct QSslErrorEntry {
int code = 0;
int depth = 0;
|