Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qipaddress_p.h
Go to the documentation of this file.
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
23
24namespace QIPAddressUtils {
25
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
static bool parseIp4Internal(IPv4Address &address, const char *ptr, bool acceptLeadingZero)
quint8 IPv6Address[16]
static QString number(quint8 val)
void toString(QString &appendTo, IPv4Address address)
const QChar * parseIp6(IPv6Address &address, const QChar *begin, const QChar *end)
static QChar toHex(uchar c)
bool parseIp4(IPv4Address &address, const QChar *begin, const QChar *end)
quint32 IPv4Address
void toString(QString &appendTo, const IPv6Address address)
QVarLengthArray< char, 64 > Buffer
static const QChar * checkedToAscii(Buffer &buffer, const QChar *begin, const QChar *end)
#define QStringLiteral(str)
Definition qstring.h:1826