Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qnetconmonitor_stub.cpp
Go to the documentation of this file.
1// Copyright (C) 2019 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include "qnetconmonitor_p.h"
5
6#include "private/qobject_p.h"
7
9
10Q_LOGGING_CATEGORY(lcNetMon, "qt.network.monitor");
11
12// Note: this 'stub' version is never enabled (see QNetworkConnectionMonitor::isEnabled below)
13// and thus should never affect QNAM in any unusuall way. Having this 'stub' version is similar
14// to building Qt with bearer management configured out.
15
17{
18};
19
22{
23}
24
27{
28 Q_UNUSED(local);
29 Q_UNUSED(remote);
30}
31
33{
34}
35
37{
38 Q_UNUSED(local);
39 Q_UNUSED(remote);
40
41 return false;
42}
43
45{
46 return false;
47}
48
50{
51 return false;
52}
53
55{
56}
57
59{
60 return false;
61}
62
64{
65 return false;
66}
67
The QHostAddress class provides an IP address.
bool setTargets(const QHostAddress &local, const QHostAddress &remote)
\inmodule QtCore
Definition qobject.h:103
Combined button and popup list for selecting options.
#define Q_LOGGING_CATEGORY(name,...)
#define Q_UNUSED(x)