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
21QT_BEGIN_NAMESPACE
22
23namespace QIPAddressUtils {
24
25typedef quint32 IPv4Address;
26typedef quint8 IPv6Address[16];
27
28Q_CORE_EXPORT bool parseIp4(IPv4Address &address, const QChar *begin, const QChar *end);
29Q_CORE_EXPORT const QChar *parseIp6(IPv6Address &address, const QChar *begin, const QChar *end);
30Q_CORE_EXPORT void toString(QString &appendTo, IPv4Address address);
31Q_CORE_EXPORT void toString(QString &appendTo, const IPv6Address address);
32
33} // namespace
34
35QT_END_NAMESPACE
36
37#endif // QIPADDRESS_P_H
38

source code of qtbase/src/corelib/io/qipaddress_p.h