summaryrefslogtreecommitdiff
path: root/src/network/kernel/qdnslookup_dummy.cpp
blob: 39d3ba6509a98144c2a0d66c2732ceaa490d8d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2012 Collabora Ltd, author <robin.burchell@collabora.co.uk>
// 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)
{
    qWarning("Not yet supported on this OS");
    reply->error = QDnsLookup::ResolverError;
    reply->errorString = tr("Not yet supported on this OS");
    return;
}

QT_END_NAMESPACE