From a89d20887f29d1269a1302b701640bbd5330610f Mon Sep 17 00:00:00 2001 From: tobtoht Date: Fri, 21 Apr 2023 18:13:53 +0200 Subject: [PATCH] Utils: portOpen: remove QIODeviceBase::ReadOnly for qt5 compat --- src/utils/Utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.cpp b/src/utils/Utils.cpp index f012c00..75b5280 100644 --- a/src/utils/Utils.cpp +++ b/src/utils/Utils.cpp @@ -298,7 +298,7 @@ bool portOpen(const QString &hostname, quint16 port) { // TODO: this call should qDebug() << QString("Checking for open port on: %1:%2").arg(hostname, QString::number(port)); QTcpSocket socket; - socket.connectToHost(hostname, port, QIODeviceBase::ReadOnly); + socket.connectToHost(hostname, port); bool res = socket.waitForConnected(1000); qDebug() << QString("Port " + (res ? QString("Open") : QString("Closed"))); if (!res) {