summaryrefslogtreecommitdiffstats
path: root/src/network/configure.json
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2018-06-20 10:49:31 +0200
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2018-06-21 15:10:55 +0000
commitd502d883fd104aa7a6b20cd49d1ea4c92715df71 (patch)
tree870a9741cf443c9c9cae0fa9944945cba14896d7 /src/network/configure.json
parentd77d4fc548075120213b8876259f65818cb9561e (diff)
SSL: Add a feature for DTLS
For now the new feature depends on openssl as that is the only supported implementation. Once we get an implementation for SecureTransport, we can change the condition. The feature needs to be public because qdtls.h is a public header. Change-Id: Ie3e4acbeb2888f2fb13453b3ecdc19bacc83f6e6 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Diffstat (limited to 'src/network/configure.json')
-rw-r--r--src/network/configure.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/network/configure.json b/src/network/configure.json
index 4cbc476837..5245ba06b6 100644
--- a/src/network/configure.json
+++ b/src/network/configure.json
@@ -216,6 +216,13 @@
"condition": "config.winrt || features.securetransport || features.openssl",
"output": [ "publicFeature", "feature" ]
},
+ "dtls": {
+ "label": "DTLS",
+ "purpose": "Provides a DTLS implementation",
+ "section": "Networking",
+ "condition": "features.openssl",
+ "output": [ "publicFeature" ]
+ },
"opensslv11": {
"label": "OpenSSL 1.1",
"condition": "features.openssl && tests.openssl11",