source: trunk/src/network/kernel/qnetworkinterface.h@ 603

Last change on this file since 603 was 561, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.6.1 sources.

File size: 4.3 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtNetwork module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
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
Note: See TracBrowser for help on using the repository browser.