// Copyright (C) 2012 Collabora Ltd, author // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #include "qdnslookup_p.h" QT_BEGIN_NAMESPACE void QDnsLookupRunnable::query(QDnsLookupReply *reply) { reply->error = QDnsLookup::ResolverError; reply->errorString = tr("Not yet supported on this OS"); return; } QT_END_NAMESPACE