blob: abe47ffc0b653242c2b1b84d6d1f8bc5a210105d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
// Copyright (c) 2023 LLC «V Kontakte»
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#define QT_NETWORK_BUILD_REMOVED_API
#include "qtnetworkglobal.h"
QT_USE_NAMESPACE
#if QT_NETWORK_REMOVED_SINCE(6, 7)
#include "qhostinfo.h"
// static
int QHostInfo::lookupHost(const QString &name, QObject *receiver, const char *member)
{
const auto *r = receiver;
return lookupHost(name, r, member);
}
#include "qnetworkreply.h"
QByteArray QNetworkReply::rawHeader(const QByteArray &headerName) const
{
return rawHeader(qToByteArrayViewIgnoringNull(headerName));
}
bool QNetworkReply::hasRawHeader(const QByteArray &headerName) const
{
return hasRawHeader(qToByteArrayViewIgnoringNull(headerName));
}
#include "qnetworkrequest.h"
QByteArray QNetworkRequest::rawHeader(const QByteArray &headerName) const
{
return rawHeader(qToByteArrayViewIgnoringNull(headerName));
}
bool QNetworkRequest::hasRawHeader(const QByteArray &headerName) const
{
return hasRawHeader(qToByteArrayViewIgnoringNull(headerName));
}
#include "qnetworkcookie.h"
QList<QNetworkCookie> QNetworkCookie::parseCookies(const QByteArray &cookieString)
{
return parseCookies(qToByteArrayViewIgnoringNull(cookieString));
}
// #include "qotherheader.h"
// // implement removed functions from qotherheader.h
// order sections alphabetically
#endif // QT_NETWORK_REMOVED_SINCE(6, 7)
#if QT_NETWORK_REMOVED_SINCE(6, 8)
#if QT_CONFIG(dnslookup)
# include "qdnslookup.h" // inlined API
#endif
#include "qnetworkrequest.h" // inlined API
#include "qsslerror.h"
#ifndef QT_NO_DEBUG_STREAM
#if QT_CONFIG(ssl)
#include "qdebug.h"
QDebug operator<<(QDebug debug, const QSslError::SslError &error)
{
return print(std::move(debug), error);
}
#endif
#endif
// #include "qotherheader.h"
// // implement removed functions from qotherheader.h
// order sections alphabetically
#endif // QT_NETWORK_REMOVED_SINCE(6, 8)
|