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
QHttpNetworkConnectionChannel Class Reference

#include <qhttpnetworkconnectionchannel_p.h>

+ Inheritance diagram for QHttpNetworkConnectionChannel:
+ Collaboration diagram for QHttpNetworkConnectionChannel:

Public Types

enum  ChannelState {
  IdleState = 0 , ConnectingState = 1 , WritingState = 2 , WaitingState = 4 ,
  ReadingState = 8 , ClosingState = 16 , BusyState = (ConnectingState|WritingState|WaitingState|ReadingState|ClosingState)
}
 
enum  PipeliningSupport { PipeliningSupportUnknown , PipeliningProbablySupported , PipeliningNotSupported }
 

Public Member Functions

void ignoreSslErrors ()
 
void ignoreSslErrors (const QList< QSslError > &errors)
 
void setSslConfiguration (const QSslConfiguration &config)
 
void requeueHttp2Requests ()
 
void emitFinishedWithError (QNetworkReply::NetworkError error, const char *message)
 
void pipelineInto (HttpMessagePair &pair)
 
void pipelineFlush ()
 
void requeueCurrentlyPipelinedRequests ()
 
void detectPipeliningSupport ()
 
 QHttpNetworkConnectionChannel ()
 
void setConnection (QHttpNetworkConnection *c)
 
void setProxy (const QNetworkProxy &networkProxy)
 
void init ()
 
void close ()
 
void abort ()
 
void sendRequest ()
 
void sendRequestDelayed ()
 
bool ensureConnection ()
 
void allDone ()
 
void handleStatus ()
 
bool resetUploadData ()
 
void handleUnexpectedEOF ()
 
void closeAndResendCurrentRequest ()
 
void resendCurrentRequest ()
 
void checkAndResumeCommunication ()
 
bool isSocketBusy () const
 
bool isSocketWriting () const
 
bool isSocketWaiting () const
 
bool isSocketReading () const
 
- Public Member Functions inherited from QObject
Q_INVOKABLE QObject (QObject *parent=nullptr)
 Constructs an object with parent object parent.
 
virtual ~QObject ()
 Destroys the object, deleting all its child objects.
 
virtual bool event (QEvent *event)
 This virtual function receives events to an object and should return true if the event e was recognized and processed.
 
virtual bool eventFilter (QObject *watched, QEvent *event)
 Filters events if this object has been installed as an event filter for the watched object.
 
QString objectName () const
 
Q_WEAK_OVERLOAD void setObjectName (const QString &name)
 Sets the object's name to name.
 
void setObjectName (QAnyStringView name)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
QBindable< QStringbindableObjectName ()
 
bool isWidgetType () const
 Returns true if the object is a widget; otherwise returns false.
 
bool isWindowType () const
 Returns true if the object is a window; otherwise returns false.
 
bool isQuickItemType () const
 Returns true if the object is a QQuickItem; otherwise returns false.
 
bool signalsBlocked () const noexcept
 Returns true if signals are blocked; otherwise returns false.
 
bool blockSignals (bool b) noexcept
 If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it).
 
QThreadthread () const
 Returns the thread in which the object lives.
 
bool moveToThread (QThread *thread QT6_DECL_NEW_OVERLOAD_TAIL)
 Changes the thread affinity for this object and its children and returns true on success.
 
int startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer)
 This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds.
 
int startTimer (std::chrono::nanoseconds time, Qt::TimerType timerType=Qt::CoarseTimer)
 
void killTimer (int id)
 Kills the timer with timer identifier, id.
 
void killTimer (Qt::TimerId id)
 
template<typename T >
findChild (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object.
 
template<typename T >
QList< T > findChildren (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects.
 
template<typename T >
findChild (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
template<typename T >
QList< T > findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
const QObjectListchildren () const
 Returns a list of child objects.
 
void setParent (QObject *parent)
 Makes the object a child of parent.
 
void installEventFilter (QObject *filterObj)
 Installs an event filter filterObj on this object.
 
void removeEventFilter (QObject *obj)
 Removes an event filter object obj from this object.
 
QMetaObject::Connection connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const
 
bool disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const
 
bool disconnect (const QObject *receiver, const char *member=nullptr) const
 
void dumpObjectTree () const
 Dumps a tree of children to the debug output.
 
void dumpObjectInfo () const
 Dumps information about signal connections, etc.
 
bool setProperty (const char *name, const QVariant &value)
 Sets the value of the object's name property to value.
 
bool setProperty (const char *name, QVariant &&value)
 
QVariant property (const char *name) const
 Returns the value of the object's name property.
 
QList< QByteArraydynamicPropertyNames () const
 
QBindingStoragebindingStorage ()
 
const QBindingStoragebindingStorage () const
 
QObjectparent () const
 Returns a pointer to the parent object.
 
bool inherits (const char *classname) const
 Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false.
 

Public Attributes

QIODevicesocket
 
bool ssl
 
bool isInitialized
 
bool waitingForPotentialAbort = false
 
bool needInvokeReceiveReply = false
 
bool needInvokeReadyRead = false
 
bool needInvokeSendRequest = false
 
ChannelState state
 
QHttpNetworkRequest request
 
QHttpNetworkReplyreply
 
qint64 written
 
qint64 bytesTotal
 
bool resendCurrent
 
int lastStatus
 
bool pendingEncrypt
 
int reconnectAttempts
 
QAuthenticator authenticator
 
QAuthenticator proxyAuthenticator
 
bool authenticationCredentialsSent
 
bool proxyCredentialsSent
 
std::unique_ptr< QAbstractProtocolHandlerprotocolHandler
 
QMultiMap< int, HttpMessagePairh2RequestsToSend
 
bool switchedToHttp2 = false
 
bool ignoreAllSslErrors
 
QList< QSslErrorignoreSslErrorsList
 
QScopedPointer< QSslConfigurationsslConfiguration
 
PipeliningSupport pipeliningSupported
 
QList< HttpMessagePairalreadyPipelinedRequests
 
QByteArray pipeline
 
QAbstractSocket::NetworkLayerProtocol networkLayerPreference
 
QPointer< QHttpNetworkConnectionconnection
 
QNetworkProxy proxy
 

Protected Slots

void _q_receiveReply ()
 
void _q_bytesWritten (qint64 bytes)
 
void _q_readyRead ()
 
void _q_disconnected ()
 
void _q_connected_abstract_socket (QAbstractSocket *socket)
 
void _q_connected ()
 
void _q_error (QAbstractSocket::SocketError)
 
void _q_proxyAuthenticationRequired (const QNetworkProxy &proxy, QAuthenticator *auth)
 
void _q_uploadDataReadyRead ()
 
void _q_encrypted ()
 
void _q_sslErrors (const QList< QSslError > &errors)
 
void _q_preSharedKeyAuthenticationRequired (QSslPreSharedKeyAuthenticator *)
 
void _q_encryptedBytesWritten (qint64 bytes)
 

Friends

class QHttpProtocolHandler
 

Additional Inherited Members

- Public Slots inherited from QObject
void deleteLater ()
 \threadsafe
 
- Signals inherited from QObject
void destroyed (QObject *=nullptr)
 This signal is emitted immediately before the object obj is destroyed, after any instances of QPointer have been notified, and cannot be blocked.
 
void objectNameChanged (const QString &objectName, QPrivateSignal)
 This signal is emitted after the object's name has been changed.
 
- Static Public Member Functions inherited from QObject
static QMetaObject::Connection connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection)
 \threadsafe
 
static QMetaObject::Connection connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection)
 
template<typename Func1 , typename Func2 >
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection)
 
template<typename Func1 , typename Func2 >
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot)
 
static bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member)
 \threadsafe
 
static bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member)
 
static bool disconnect (const QMetaObject::Connection &)
 Disconnect a connection.
 
template<typename Func1 , typename Func2 >
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot)
 
template<typename Func1 >
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero)
 
- Protected Member Functions inherited from QObject
QObjectsender () const
 Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr.
 
int senderSignalIndex () const
 
int receivers (const char *signal) const
 Returns the number of receivers connected to the signal.
 
bool isSignalConnected (const QMetaMethod &signal) const
 
virtual void timerEvent (QTimerEvent *event)
 This event handler can be reimplemented in a subclass to receive timer events for the object.
 
virtual void childEvent (QChildEvent *event)
 This event handler can be reimplemented in a subclass to receive child events.
 
virtual void customEvent (QEvent *event)
 This event handler can be reimplemented in a subclass to receive custom events.
 
virtual void connectNotify (const QMetaMethod &signal)
 
virtual void disconnectNotify (const QMetaMethod &signal)
 
 QObject (QObjectPrivate &dd, QObject *parent=nullptr)
 
- Protected Attributes inherited from QObject
QScopedPointer< QObjectDatad_ptr
 
- Properties inherited from QObject
QString objectName
 the name of this object
 

Detailed Description

Definition at line 65 of file qhttpnetworkconnectionchannel_p.h.

Member Enumeration Documentation

◆ ChannelState

Enumerator
IdleState 
ConnectingState 
WritingState 
WaitingState 
ReadingState 
ClosingState 
BusyState 

Definition at line 70 of file qhttpnetworkconnectionchannel_p.h.

◆ PipeliningSupport

Enumerator
PipeliningSupportUnknown 
PipeliningProbablySupported 
PipeliningNotSupported 

Definition at line 115 of file qhttpnetworkconnectionchannel_p.h.

Constructor & Destructor Documentation

◆ QHttpNetworkConnectionChannel()

QHttpNetworkConnectionChannel::QHttpNetworkConnectionChannel ( )

Definition at line 39 of file qhttpnetworkconnectionchannel.cpp.

References QHttpNetworkConnectionChannel(), authenticationCredentialsSent, ignoreAllSslErrors, isInitialized, lastStatus, pendingEncrypt, pipeliningSupported, PipeliningSupportUnknown, proxyCredentialsSent, reconnectAttempts, reconnectAttemptsDefault, reply, resendCurrent, and ssl.

Referenced by QHttpNetworkConnectionChannel().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Function Documentation

◆ _q_bytesWritten

void QHttpNetworkConnectionChannel::_q_bytesWritten ( qint64 bytes)
protectedslot

Definition at line 832 of file qhttpnetworkconnectionchannel.cpp.

References isSocketWriting(), sendRequest(), and ssl.

+ Here is the call graph for this function:

◆ _q_connected

void QHttpNetworkConnectionChannel::_q_connected ( )
protectedslot

Definition at line 986 of file qhttpnetworkconnectionchannel.cpp.

◆ _q_connected_abstract_socket

void QHttpNetworkConnectionChannel::_q_connected_abstract_socket ( QAbstractSocket * socket)
protectedslot

Definition at line 876 of file qhttpnetworkconnectionchannel.cpp.

References close(), pendingEncrypt, pipeliningSupported, PipeliningSupportUnknown, reply, sendRequest(), ssl, and switchedToHttp2.

+ Here is the call graph for this function:

◆ _q_disconnected

void QHttpNetworkConnectionChannel::_q_disconnected ( )
protectedslot

Definition at line 847 of file qhttpnetworkconnectionchannel.cpp.

References pendingEncrypt, reply, and requeueCurrentlyPipelinedRequests().

+ Here is the call graph for this function:

◆ _q_encrypted

void QHttpNetworkConnectionChannel::_q_encrypted ( )
protectedslot

Definition at line 1219 of file qhttpnetworkconnectionchannel.cpp.

References pendingEncrypt, reply, requeueHttp2Requests(), sendRequestDelayed(), switchedToHttp2, and waitingForPotentialAbort.

+ Here is the call graph for this function:

◆ _q_encryptedBytesWritten

void QHttpNetworkConnectionChannel::_q_encryptedBytesWritten ( qint64 bytes)
protectedslot

Definition at line 1405 of file qhttpnetworkconnectionchannel.cpp.

References isSocketWriting(), and sendRequest().

+ Here is the call graph for this function:

◆ _q_error

void QHttpNetworkConnectionChannel::_q_error ( QAbstractSocket::SocketError socketError)
protectedslot

Definition at line 996 of file qhttpnetworkconnectionchannel.cpp.

References pendingEncrypt, reconnectAttempts, reply, requeueCurrentlyPipelinedRequests(), and resendCurrentRequest().

+ Here is the call graph for this function:

◆ _q_preSharedKeyAuthenticationRequired

void QHttpNetworkConnectionChannel::_q_preSharedKeyAuthenticationRequired ( QSslPreSharedKeyAuthenticator * authenticator)
protectedslot

Definition at line 1382 of file qhttpnetworkconnectionchannel.cpp.

References reply.

◆ _q_proxyAuthenticationRequired

void QHttpNetworkConnectionChannel::_q_proxyAuthenticationRequired ( const QNetworkProxy & proxy,
QAuthenticator * auth )
protectedslot

Definition at line 1182 of file qhttpnetworkconnectionchannel.cpp.

◆ _q_readyRead

void QHttpNetworkConnectionChannel::_q_readyRead ( )
protectedslot

Definition at line 260 of file qhttpnetworkconnectionchannel.cpp.

References needInvokeReadyRead, and waitingForPotentialAbort.

Referenced by checkAndResumeCommunication().

+ Here is the caller graph for this function:

◆ _q_receiveReply

void QHttpNetworkConnectionChannel::_q_receiveReply ( )
protectedslot

◆ _q_sslErrors

void QHttpNetworkConnectionChannel::_q_sslErrors ( const QList< QSslError > & errors)
protectedslot

Definition at line 1354 of file qhttpnetworkconnectionchannel.cpp.

References reply.

◆ _q_uploadDataReadyRead

void QHttpNetworkConnectionChannel::_q_uploadDataReadyRead ( )
protectedslot

Definition at line 1199 of file qhttpnetworkconnectionchannel.cpp.

References reply, and sendRequest().

+ Here is the call graph for this function:

◆ abort()

void QHttpNetworkConnectionChannel::abort ( )

Definition at line 203 of file qhttpnetworkconnectionchannel.cpp.

References pendingEncrypt.

Referenced by checkAndResumeCommunication().

+ Here is the caller graph for this function:

◆ allDone()

void QHttpNetworkConnectionChannel::allDone ( )

Definition at line 462 of file qhttpnetworkconnectionchannel.cpp.

References close(), detectPipeliningSupport(), handleStatus(), reconnectAttempts, reconnectAttemptsDefault, reply, requeueCurrentlyPipelinedRequests(), resendCurrent, and switchedToHttp2.

+ Here is the call graph for this function:

◆ checkAndResumeCommunication()

void QHttpNetworkConnectionChannel::checkAndResumeCommunication ( )

Definition at line 1326 of file qhttpnetworkconnectionchannel.cpp.

References _q_readyRead(), abort(), needInvokeReadyRead, needInvokeSendRequest, sendRequest(), and waitingForPotentialAbort.

+ Here is the call graph for this function:

◆ close()

void QHttpNetworkConnectionChannel::close ( )

Definition at line 180 of file qhttpnetworkconnectionchannel.cpp.

References pendingEncrypt.

Referenced by _q_connected_abstract_socket(), allDone(), closeAndResendCurrentRequest(), handleStatus(), and handleUnexpectedEOF().

+ Here is the caller graph for this function:

◆ closeAndResendCurrentRequest()

void QHttpNetworkConnectionChannel::closeAndResendCurrentRequest ( )

Definition at line 793 of file qhttpnetworkconnectionchannel.cpp.

References close(), reply, requeueCurrentlyPipelinedRequests(), and resendCurrent.

Referenced by handleStatus(), and handleUnexpectedEOF().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ detectPipeliningSupport()

void QHttpNetworkConnectionChannel::detectPipeliningSupport ( )

Definition at line 580 of file qhttpnetworkconnectionchannel.cpp.

References PipeliningProbablySupported, pipeliningSupported, PipeliningSupportUnknown, and reply.

Referenced by allDone().

+ Here is the caller graph for this function:

◆ emitFinishedWithError()

void QHttpNetworkConnectionChannel::emitFinishedWithError ( QNetworkReply::NetworkError error,
const char * message )

Definition at line 1205 of file qhttpnetworkconnectionchannel.cpp.

References reply.

◆ ensureConnection()

bool QHttpNetworkConnectionChannel::ensureConnection ( )

Definition at line 294 of file qhttpnetworkconnectionchannel.cpp.

References authenticationCredentialsSent, ignoreAllSslErrors, init(), isInitialized, pendingEncrypt, pipeliningSupported, PipeliningSupportUnknown, proxyCredentialsSent, reply, resendCurrent, and ssl.

+ Here is the call graph for this function:

◆ handleStatus()

void QHttpNetworkConnectionChannel::handleStatus ( )

Definition at line 621 of file qhttpnetworkconnectionchannel.cpp.

References close(), closeAndResendCurrentRequest(), reply, resendCurrent, and resetUploadData().

Referenced by allDone().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ handleUnexpectedEOF()

void QHttpNetworkConnectionChannel::handleUnexpectedEOF ( )

Definition at line 271 of file qhttpnetworkconnectionchannel.cpp.

References close(), closeAndResendCurrentRequest(), reconnectAttempts, reply, and requeueCurrentlyPipelinedRequests().

+ Here is the call graph for this function:

◆ ignoreSslErrors() [1/2]

void QHttpNetworkConnectionChannel::ignoreSslErrors ( )

Definition at line 724 of file qhttpnetworkconnectionchannel.cpp.

References ignoreAllSslErrors.

◆ ignoreSslErrors() [2/2]

void QHttpNetworkConnectionChannel::ignoreSslErrors ( const QList< QSslError > & errors)

Definition at line 733 of file qhttpnetworkconnectionchannel.cpp.

◆ init()

void QHttpNetworkConnectionChannel::init ( )

Definition at line 65 of file qhttpnetworkconnectionchannel.cpp.

References ignoreAllSslErrors, and isInitialized.

Referenced by ensureConnection().

+ Here is the caller graph for this function:

◆ isSocketBusy()

bool QHttpNetworkConnectionChannel::isSocketBusy ( ) const

Definition at line 812 of file qhttpnetworkconnectionchannel.cpp.

◆ isSocketReading()

bool QHttpNetworkConnectionChannel::isSocketReading ( ) const

Definition at line 827 of file qhttpnetworkconnectionchannel.cpp.

◆ isSocketWaiting()

bool QHttpNetworkConnectionChannel::isSocketWaiting ( ) const

Definition at line 822 of file qhttpnetworkconnectionchannel.cpp.

◆ isSocketWriting()

bool QHttpNetworkConnectionChannel::isSocketWriting ( ) const

Definition at line 817 of file qhttpnetworkconnectionchannel.cpp.

Referenced by _q_bytesWritten(), and _q_encryptedBytesWritten().

+ Here is the caller graph for this function:

◆ pipelineFlush()

void QHttpNetworkConnectionChannel::pipelineFlush ( )

Definition at line 778 of file qhttpnetworkconnectionchannel.cpp.

◆ pipelineInto()

void QHttpNetworkConnectionChannel::pipelineInto ( HttpMessagePair & pair)

Definition at line 754 of file qhttpnetworkconnectionchannel.cpp.

Referenced by QHttpNetworkConnectionPrivate::fillPipeline().

+ Here is the caller graph for this function:

◆ requeueCurrentlyPipelinedRequests()

void QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests ( )

Definition at line 608 of file qhttpnetworkconnectionchannel.cpp.

Referenced by _q_disconnected(), _q_error(), allDone(), closeAndResendCurrentRequest(), handleUnexpectedEOF(), and resendCurrentRequest().

+ Here is the caller graph for this function:

◆ requeueHttp2Requests()

void QHttpNetworkConnectionChannel::requeueHttp2Requests ( )

Definition at line 1347 of file qhttpnetworkconnectionchannel.cpp.

Referenced by _q_encrypted().

+ Here is the caller graph for this function:

◆ resendCurrentRequest()

void QHttpNetworkConnectionChannel::resendCurrentRequest ( )

Definition at line 803 of file qhttpnetworkconnectionchannel.cpp.

References reply, requeueCurrentlyPipelinedRequests(), and resendCurrent.

Referenced by _q_error().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ resetUploadData()

bool QHttpNetworkConnectionChannel::resetUploadData ( )

Definition at line 689 of file qhttpnetworkconnectionchannel.cpp.

References reply.

Referenced by handleStatus().

+ Here is the caller graph for this function:

◆ sendRequest()

void QHttpNetworkConnectionChannel::sendRequest ( )

Definition at line 226 of file qhttpnetworkconnectionchannel.cpp.

References needInvokeSendRequest, and waitingForPotentialAbort.

Referenced by _q_bytesWritten(), _q_connected_abstract_socket(), _q_encryptedBytesWritten(), _q_uploadDataReadyRead(), and checkAndResumeCommunication().

+ Here is the caller graph for this function:

◆ sendRequestDelayed()

void QHttpNetworkConnectionChannel::sendRequestDelayed ( )

Definition at line 242 of file qhttpnetworkconnectionchannel.cpp.

Referenced by _q_encrypted().

+ Here is the caller graph for this function:

◆ setConnection()

void QHttpNetworkConnectionChannel::setConnection ( QHttpNetworkConnection * c)

Definition at line 1416 of file qhttpnetworkconnectionchannel.cpp.

◆ setProxy()

void QHttpNetworkConnectionChannel::setProxy ( const QNetworkProxy & networkProxy)

Definition at line 712 of file qhttpnetworkconnectionchannel.cpp.

◆ setSslConfiguration()

void QHttpNetworkConnectionChannel::setSslConfiguration ( const QSslConfiguration & config)

Definition at line 741 of file qhttpnetworkconnectionchannel.cpp.

Friends And Related Symbol Documentation

◆ QHttpProtocolHandler

friend class QHttpProtocolHandler
friend

Definition at line 189 of file qhttpnetworkconnectionchannel_p.h.

Member Data Documentation

◆ alreadyPipelinedRequests

QList<HttpMessagePair> QHttpNetworkConnectionChannel::alreadyPipelinedRequests

Definition at line 121 of file qhttpnetworkconnectionchannel_p.h.

◆ authenticationCredentialsSent

bool QHttpNetworkConnectionChannel::authenticationCredentialsSent

◆ authenticator

QAuthenticator QHttpNetworkConnectionChannel::authenticator

Definition at line 95 of file qhttpnetworkconnectionchannel_p.h.

◆ bytesTotal

qint64 QHttpNetworkConnectionChannel::bytesTotal

Definition at line 90 of file qhttpnetworkconnectionchannel_p.h.

◆ connection

QPointer<QHttpNetworkConnection> QHttpNetworkConnectionChannel::connection

Definition at line 133 of file qhttpnetworkconnectionchannel_p.h.

◆ h2RequestsToSend

QMultiMap<int, HttpMessagePair> QHttpNetworkConnectionChannel::h2RequestsToSend

Definition at line 100 of file qhttpnetworkconnectionchannel_p.h.

◆ ignoreAllSslErrors

bool QHttpNetworkConnectionChannel::ignoreAllSslErrors

◆ ignoreSslErrorsList

QList<QSslError> QHttpNetworkConnectionChannel::ignoreSslErrorsList

Definition at line 104 of file qhttpnetworkconnectionchannel_p.h.

◆ isInitialized

bool QHttpNetworkConnectionChannel::isInitialized

◆ lastStatus

int QHttpNetworkConnectionChannel::lastStatus

◆ needInvokeReadyRead

bool QHttpNetworkConnectionChannel::needInvokeReadyRead = false

Definition at line 84 of file qhttpnetworkconnectionchannel_p.h.

Referenced by _q_readyRead(), and checkAndResumeCommunication().

◆ needInvokeReceiveReply

bool QHttpNetworkConnectionChannel::needInvokeReceiveReply = false

Definition at line 83 of file qhttpnetworkconnectionchannel_p.h.

Referenced by _q_receiveReply().

◆ needInvokeSendRequest

bool QHttpNetworkConnectionChannel::needInvokeSendRequest = false

Definition at line 85 of file qhttpnetworkconnectionchannel_p.h.

Referenced by checkAndResumeCommunication(), and sendRequest().

◆ networkLayerPreference

QAbstractSocket::NetworkLayerProtocol QHttpNetworkConnectionChannel::networkLayerPreference

Definition at line 130 of file qhttpnetworkconnectionchannel_p.h.

◆ pendingEncrypt

bool QHttpNetworkConnectionChannel::pendingEncrypt

◆ pipeline

QByteArray QHttpNetworkConnectionChannel::pipeline

Definition at line 122 of file qhttpnetworkconnectionchannel_p.h.

◆ pipeliningSupported

PipeliningSupport QHttpNetworkConnectionChannel::pipeliningSupported

◆ protocolHandler

std::unique_ptr<QAbstractProtocolHandler> QHttpNetworkConnectionChannel::protocolHandler

Definition at line 99 of file qhttpnetworkconnectionchannel_p.h.

◆ proxy

QNetworkProxy QHttpNetworkConnectionChannel::proxy

Definition at line 136 of file qhttpnetworkconnectionchannel_p.h.

◆ proxyAuthenticator

QAuthenticator QHttpNetworkConnectionChannel::proxyAuthenticator

Definition at line 96 of file qhttpnetworkconnectionchannel_p.h.

◆ proxyCredentialsSent

bool QHttpNetworkConnectionChannel::proxyCredentialsSent

◆ reconnectAttempts

int QHttpNetworkConnectionChannel::reconnectAttempts

◆ reply

◆ request

QHttpNetworkRequest QHttpNetworkConnectionChannel::request

Definition at line 87 of file qhttpnetworkconnectionchannel_p.h.

◆ resendCurrent

bool QHttpNetworkConnectionChannel::resendCurrent

◆ socket

QIODevice* QHttpNetworkConnectionChannel::socket

Definition at line 79 of file qhttpnetworkconnectionchannel_p.h.

◆ ssl

bool QHttpNetworkConnectionChannel::ssl

◆ sslConfiguration

QScopedPointer<QSslConfiguration> QHttpNetworkConnectionChannel::sslConfiguration

Definition at line 105 of file qhttpnetworkconnectionchannel_p.h.

◆ state

ChannelState QHttpNetworkConnectionChannel::state

Definition at line 86 of file qhttpnetworkconnectionchannel_p.h.

◆ switchedToHttp2

bool QHttpNetworkConnectionChannel::switchedToHttp2 = false

◆ waitingForPotentialAbort

bool QHttpNetworkConnectionChannel::waitingForPotentialAbort = false

◆ written

qint64 QHttpNetworkConnectionChannel::written

Definition at line 89 of file qhttpnetworkconnectionchannel_p.h.


The documentation for this class was generated from the following files: