Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qdnslookup_dummy.cpp
Go to the documentation of this file.
1// Copyright (C) 2012 Collabora Ltd, author <robin.burchell@collabora.co.uk>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5#include "qdnslookup_p.h"
6
8
9void QDnsLookupRunnable::query(QDnsLookupReply *reply)
10{
11 reply->error = QDnsLookup::ResolverError;
12 reply->errorString = tr("Not yet supported on this OS");
13 return;
14}
15
16QT_END_NAMESPACE