4#define QT_NETWORK_BUILD_REMOVED_API
10#if QT_NETWORK_REMOVED_SINCE(6
, 7
)
15int QHostInfo::lookupHost(
const QString &name, QObject *receiver,
const char *member)
17 const auto *r = receiver;
18 return lookupHost(name, r, member);
22#include "qnetworkreply.h"
24QByteArray QNetworkReply::rawHeader(
const QByteArray &headerName)
const
26 return rawHeader(qToByteArrayViewIgnoringNull(headerName));
29bool QNetworkReply::hasRawHeader(
const QByteArray &headerName)
const
31 return hasRawHeader(qToByteArrayViewIgnoringNull(headerName));
34#include "qnetworkrequest.h"
36QByteArray QNetworkRequest::rawHeader(
const QByteArray &headerName)
const
38 return rawHeader(qToByteArrayViewIgnoringNull(headerName));
41bool QNetworkRequest::hasRawHeader(
const QByteArray &headerName)
const
43 return hasRawHeader(qToByteArrayViewIgnoringNull(headerName));
46#include "qnetworkcookie.h"
48QList<QNetworkCookie> QNetworkCookie::parseCookies(
const QByteArray &cookieString)
50 return parseCookies(qToByteArrayViewIgnoringNull(cookieString));
59#if QT_NETWORK_REMOVED_SINCE(6
, 8
)
61#if QT_CONFIG(dnslookup)
62# include "qdnslookup.h"
64#include "qnetworkrequest.h"
68#ifndef QT_NO_DEBUG_STREAM
73QDebug operator<<(QDebug debug,
const QSslError::SslError &error)
75 return print(std::move(debug), error);
86#if QT_NETWORK_REMOVED_SINCE(6
, 12
)
88#ifndef QT_NO_DEBUG_STREAM
91#include "qabstractsocket.h"
93QDebug operator<<(QDebug debug, QAbstractSocket::SocketError error)
95 return operator<< <QAbstractSocket::SocketError>(std::move(debug), error);
98QDebug operator<<(QDebug debug, QAbstractSocket::SocketState state)
100 return operator<< <QAbstractSocket::SocketState>(std::move(debug), state);
104#if QT_CONFIG(localserver)
105#include "qlocalsocket.h"
107#ifndef QT_NO_DEBUG_STREAM
110QDebug operator<<(QDebug debug, QLocalSocket::LocalSocketError error)
112 return operator<< <QLocalSocket::LocalSocketError>(std::move(debug), error);
115QDebug operator<<(QDebug debug, QLocalSocket::LocalSocketState state)
117 return operator<< <QLocalSocket::LocalSocketState>(std::move(debug), state);