From 30491a1ea9b5f14bdae7a4b0f561e0431fbd14af Mon Sep 17 00:00:00 2001 From: Dan Nagle Date: Fri, 18 Oct 2024 19:20:44 -0500 Subject: [PATCH] DTLS will only be supported for Qt6 --- src/packetnetwork.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packetnetwork.cpp b/src/packetnetwork.cpp index c6a1a72a..d9509a00 100755 --- a/src/packetnetwork.cpp +++ b/src/packetnetwork.cpp @@ -159,7 +159,7 @@ QString PacketNetwork::getIPmode() bool PacketNetwork::DTLSisSupported() { -#if QT_VERSION < QT_VERSION_CHECK(5, 12, 0) +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) return false; #endif