1 | // Copyright (C) 2016 Intel Corporation. |
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #ifndef QIPADDRESS_P_H |
5 | #define QIPADDRESS_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists purely as an |
12 | // implementation detail. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtCore/private/qglobal_p.h> |
19 | #include "qstring.h" |
20 | |
21 | QT_BEGIN_NAMESPACE |
22 | |
23 | namespace QIPAddressUtils { |
24 | |
25 | typedef quint32 IPv4Address; |
26 | typedef quint8 IPv6Address[16]; |
27 | |
28 | Q_CORE_EXPORT bool parseIp4(IPv4Address &address, const QChar *begin, const QChar *end); |
29 | Q_CORE_EXPORT const QChar *parseIp6(IPv6Address &address, const QChar *begin, const QChar *end); |
30 | Q_CORE_EXPORT void toString(QString &appendTo, IPv4Address address); |
31 | Q_CORE_EXPORT void toString(QString &appendTo, const IPv6Address address); |
32 | |
33 | } // namespace |
34 | |
35 | QT_END_NAMESPACE |
36 | |
37 | #endif // QIPADDRESS_P_H |
38 | |