033a1a2793
A simple application that establishes DTLS connection(s) and sends/receives datagrams. Class DtlsAssociation is essentially a QUdpSocket|QDtls pair: it initiates a handshake, handles timeouts and errors. After establishing an encrypted connection it sends messages to the server and processes responses. Task-number: QTBUG-67596 Change-Id: I92d481b7dfd2459e6a93c754b338a2e897a7feaf Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
42 lines
1.0 KiB
Prolog
42 lines
1.0 KiB
Prolog
requires(qtHaveModule(network))
|
|
|
|
TEMPLATE = subdirs
|
|
QT_FOR_CONFIG += network-private
|
|
SUBDIRS = \
|
|
download \
|
|
downloadmanager
|
|
!integrity: SUBDIRS += dnslookup
|
|
qtHaveModule(widgets) {
|
|
SUBDIRS += \
|
|
blockingfortuneclient \
|
|
broadcastreceiver \
|
|
broadcastsender \
|
|
http \
|
|
loopback \
|
|
threadedfortuneserver \
|
|
googlesuggest \
|
|
torrent \
|
|
multicastreceiver \
|
|
multicastsender
|
|
|
|
qtConfig(bearermanagement) {
|
|
qtConfig(processenvironment): SUBDIRS += network-chat
|
|
|
|
SUBDIRS += \
|
|
bearermonitor \
|
|
fortuneclient \
|
|
fortuneserver
|
|
|
|
}
|
|
|
|
qtConfig(openssl) {
|
|
SUBDIRS += \
|
|
securesocketclient \
|
|
secureudpserver \
|
|
secureudpclient
|
|
}
|
|
qtConfig(sctp): SUBDIRS += multistreamserver multistreamclient
|
|
}
|
|
|
|
EXAMPLE_FILES = shared
|