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

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