1/****************************************************************************
2**
3** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4** Contact: http://www.qt-project.org/legal
5**
6** This file is part of the QtNetwork module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Digia. For licensing terms and
14** conditions see http://qt.digia.com/licensing. For further information
15** use the contact form at http://qt.digia.com/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 2.1 as published by the Free Software
20** Foundation and appearing in the file LICENSE.LGPL included in the
21** packaging of this file. Please review the following information to
22** ensure the GNU Lesser General Public License version 2.1 requirements
23** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24**
25** In addition, as a special exception, Digia gives you certain additional
26** rights. These rights are described in the Digia Qt LGPL Exception
27** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28**
29** GNU General Public License Usage
30** Alternatively, this file may be used under the terms of the GNU
31** General Public License version 3.0 as published by the Free Software
32** Foundation and appearing in the file LICENSE.GPL included in the
33** packaging of this file. Please review the following information to
34** ensure the GNU General Public License version 3.0 requirements will be
35** met: http://www.gnu.org/copyleft/gpl.html.
36**
37**
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QNETWORKINTERFACE_H
43#define QNETWORKINTERFACE_H
44
45#include <QtCore/qshareddata.h>
46#include <QtCore/qscopedpointer.h>
47#include <QtNetwork/qhostaddress.h>
48
49#ifndef QT_NO_NETWORKINTERFACE
50
51QT_BEGIN_HEADER
52
53QT_BEGIN_NAMESPACE
54
55QT_MODULE(Network)
56
57template<typename T> class QList;
58
59class QNetworkAddressEntryPrivate;
60class Q_NETWORK_EXPORT QNetworkAddressEntry
61{
62public:
63 QNetworkAddressEntry();
64 QNetworkAddressEntry(const QNetworkAddressEntry &other);
65 QNetworkAddressEntry &operator=(const QNetworkAddressEntry &other);
66 ~QNetworkAddressEntry();
67 bool operator==(const QNetworkAddressEntry &other) const;
68 inline bool operator!=(const QNetworkAddressEntry &other) const
69 { return !(*this == other); }
70
71 QHostAddress ip() const;
72 void setIp(const QHostAddress &newIp);
73
74 QHostAddress netmask() const;
75 void setNetmask(const QHostAddress &newNetmask);
76 int prefixLength() const;
77 void setPrefixLength(int length);
78
79 QHostAddress broadcast() const;
80 void setBroadcast(const QHostAddress &newBroadcast);
81
82private:
83 QScopedPointer<QNetworkAddressEntryPrivate> d;
84};
85
86class QNetworkInterfacePrivate;
87class Q_NETWORK_EXPORT QNetworkInterface
88{
89public:
90 enum InterfaceFlag {
91 IsUp = 0x1,
92 IsRunning = 0x2,
93 CanBroadcast = 0x4,
94 IsLoopBack = 0x8,
95 IsPointToPoint = 0x10,
96 CanMulticast = 0x20
97 };
98 Q_DECLARE_FLAGS(InterfaceFlags, InterfaceFlag)
99
100 QNetworkInterface();
101 QNetworkInterface(const QNetworkInterface &other);
102 QNetworkInterface &operator=(const QNetworkInterface &other);
103 ~QNetworkInterface();
104
105 bool isValid() const;
106
107 int index() const;
108 QString name() const;
109 QString humanReadableName() const;
110 InterfaceFlags flags() const;
111 QString hardwareAddress() const;
112 QList<QNetworkAddressEntry> addressEntries() const;
113
114 static QNetworkInterface interfaceFromName(const QString &name);
115 static QNetworkInterface interfaceFromIndex(int index);
116 static QList<QNetworkInterface> allInterfaces();
117 static QList<QHostAddress> allAddresses();
118
119private:
120 friend class QNetworkInterfacePrivate;
121 QSharedDataPointer<QNetworkInterfacePrivate> d;
122};
123
124Q_DECLARE_OPERATORS_FOR_FLAGS(QNetworkInterface::InterfaceFlags)
125
126#ifndef QT_NO_DEBUG_STREAM
127Q_NETWORK_EXPORT QDebug operator<<(QDebug debug, const QNetworkInterface &networkInterface);
128#endif
129
130QT_END_NAMESPACE
131
132QT_END_HEADER
133
134#endif // QT_NO_NETWORKINTERFACE
135
136#endif
137