Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qhttpnetworkconnectionchannel_p.h>
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< QString > | bindableObjectName () |
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). | |
QThread * | thread () 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 > | |
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 > | |
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 QObjectList & | children () 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< QByteArray > | dynamicPropertyNames () const |
QBindingStorage * | bindingStorage () |
const QBindingStorage * | bindingStorage () const |
QObject * | parent () 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 . | |
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 | |
QObject * | sender () 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< QObjectData > | d_ptr |
Properties inherited from QObject | |
QString | objectName |
the name of this object | |
Related Symbols inherited from QObject | |
template< class T > T | qobject_cast (const QObject *object) |
Returns the given object cast to type T if the object is of type T (or of a subclass); otherwise returns \nullptr. | |
template< typename T > T | qFindChildqFindChildren (const QObject *obj, const QString &name)() |
template< typename T > QList< T > | qFindChildrenqFindChildren (const QObject *obj, const QString &name)() |
QObjectList | |
\macro Q_CLASSINFO(Name, Value) | |
Definition at line 65 of file qhttpnetworkconnectionchannel_p.h.
Enumerator | |
---|---|
IdleState | |
ConnectingState | |
WritingState | |
WaitingState | |
ReadingState | |
ClosingState | |
BusyState |
Definition at line 70 of file qhttpnetworkconnectionchannel_p.h.
Enumerator | |
---|---|
PipeliningSupportUnknown | |
PipeliningProbablySupported | |
PipeliningNotSupported |
Definition at line 115 of file qhttpnetworkconnectionchannel_p.h.
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().
Definition at line 832 of file qhttpnetworkconnectionchannel.cpp.
References isSocketWriting(), sendRequest(), and ssl.
|
protectedslot |
Definition at line 986 of file qhttpnetworkconnectionchannel.cpp.
|
protectedslot |
Definition at line 876 of file qhttpnetworkconnectionchannel.cpp.
References close(), pendingEncrypt, pipeliningSupported, PipeliningSupportUnknown, reply, sendRequest(), ssl, and switchedToHttp2.
|
protectedslot |
Definition at line 847 of file qhttpnetworkconnectionchannel.cpp.
References pendingEncrypt, reply, and requeueCurrentlyPipelinedRequests().
|
protectedslot |
Definition at line 1219 of file qhttpnetworkconnectionchannel.cpp.
References pendingEncrypt, reply, requeueHttp2Requests(), sendRequestDelayed(), switchedToHttp2, and waitingForPotentialAbort.
Definition at line 1405 of file qhttpnetworkconnectionchannel.cpp.
References isSocketWriting(), and sendRequest().
|
protectedslot |
Definition at line 996 of file qhttpnetworkconnectionchannel.cpp.
References pendingEncrypt, reconnectAttempts, reply, requeueCurrentlyPipelinedRequests(), and resendCurrentRequest().
|
protectedslot |
Definition at line 1382 of file qhttpnetworkconnectionchannel.cpp.
References reply.
|
protectedslot |
Definition at line 1182 of file qhttpnetworkconnectionchannel.cpp.
|
protectedslot |
Definition at line 260 of file qhttpnetworkconnectionchannel.cpp.
References needInvokeReadyRead, and waitingForPotentialAbort.
Referenced by checkAndResumeCommunication().
|
protectedslot |
Definition at line 250 of file qhttpnetworkconnectionchannel.cpp.
References needInvokeReceiveReply, and waitingForPotentialAbort.
Definition at line 1354 of file qhttpnetworkconnectionchannel.cpp.
References reply.
|
protectedslot |
Definition at line 1199 of file qhttpnetworkconnectionchannel.cpp.
References reply, and sendRequest().
void QHttpNetworkConnectionChannel::abort | ( | ) |
Definition at line 203 of file qhttpnetworkconnectionchannel.cpp.
References pendingEncrypt.
Referenced by checkAndResumeCommunication().
void QHttpNetworkConnectionChannel::allDone | ( | ) |
Definition at line 462 of file qhttpnetworkconnectionchannel.cpp.
References close(), detectPipeliningSupport(), handleStatus(), reconnectAttempts, reconnectAttemptsDefault, reply, requeueCurrentlyPipelinedRequests(), resendCurrent, and switchedToHttp2.
void QHttpNetworkConnectionChannel::checkAndResumeCommunication | ( | ) |
Definition at line 1326 of file qhttpnetworkconnectionchannel.cpp.
References _q_readyRead(), abort(), needInvokeReadyRead, needInvokeSendRequest, sendRequest(), and waitingForPotentialAbort.
void QHttpNetworkConnectionChannel::close | ( | ) |
Definition at line 180 of file qhttpnetworkconnectionchannel.cpp.
References pendingEncrypt.
Referenced by _q_connected_abstract_socket(), allDone(), closeAndResendCurrentRequest(), handleStatus(), and handleUnexpectedEOF().
void QHttpNetworkConnectionChannel::closeAndResendCurrentRequest | ( | ) |
Definition at line 793 of file qhttpnetworkconnectionchannel.cpp.
References close(), reply, requeueCurrentlyPipelinedRequests(), and resendCurrent.
Referenced by handleStatus(), and handleUnexpectedEOF().
void QHttpNetworkConnectionChannel::detectPipeliningSupport | ( | ) |
Definition at line 580 of file qhttpnetworkconnectionchannel.cpp.
References PipeliningProbablySupported, pipeliningSupported, PipeliningSupportUnknown, and reply.
Referenced by allDone().
void QHttpNetworkConnectionChannel::emitFinishedWithError | ( | QNetworkReply::NetworkError | error, |
const char * | message ) |
Definition at line 1205 of file qhttpnetworkconnectionchannel.cpp.
References reply.
bool QHttpNetworkConnectionChannel::ensureConnection | ( | ) |
Definition at line 294 of file qhttpnetworkconnectionchannel.cpp.
References authenticationCredentialsSent, ignoreAllSslErrors, init(), isInitialized, pendingEncrypt, pipeliningSupported, PipeliningSupportUnknown, proxyCredentialsSent, reply, resendCurrent, and ssl.
void QHttpNetworkConnectionChannel::handleStatus | ( | ) |
Definition at line 621 of file qhttpnetworkconnectionchannel.cpp.
References close(), closeAndResendCurrentRequest(), reply, resendCurrent, and resetUploadData().
Referenced by allDone().
void QHttpNetworkConnectionChannel::handleUnexpectedEOF | ( | ) |
Definition at line 271 of file qhttpnetworkconnectionchannel.cpp.
References close(), closeAndResendCurrentRequest(), reconnectAttempts, reply, and requeueCurrentlyPipelinedRequests().
void QHttpNetworkConnectionChannel::ignoreSslErrors | ( | ) |
Definition at line 724 of file qhttpnetworkconnectionchannel.cpp.
References ignoreAllSslErrors.
Definition at line 733 of file qhttpnetworkconnectionchannel.cpp.
void QHttpNetworkConnectionChannel::init | ( | ) |
Definition at line 65 of file qhttpnetworkconnectionchannel.cpp.
References ignoreAllSslErrors, and isInitialized.
Referenced by ensureConnection().
bool QHttpNetworkConnectionChannel::isSocketBusy | ( | ) | const |
Definition at line 812 of file qhttpnetworkconnectionchannel.cpp.
bool QHttpNetworkConnectionChannel::isSocketReading | ( | ) | const |
Definition at line 827 of file qhttpnetworkconnectionchannel.cpp.
bool QHttpNetworkConnectionChannel::isSocketWaiting | ( | ) | const |
Definition at line 822 of file qhttpnetworkconnectionchannel.cpp.
bool QHttpNetworkConnectionChannel::isSocketWriting | ( | ) | const |
Definition at line 817 of file qhttpnetworkconnectionchannel.cpp.
Referenced by _q_bytesWritten(), and _q_encryptedBytesWritten().
void QHttpNetworkConnectionChannel::pipelineFlush | ( | ) |
Definition at line 778 of file qhttpnetworkconnectionchannel.cpp.
void QHttpNetworkConnectionChannel::pipelineInto | ( | HttpMessagePair & | pair | ) |
Definition at line 754 of file qhttpnetworkconnectionchannel.cpp.
Referenced by QHttpNetworkConnectionPrivate::fillPipeline().
void QHttpNetworkConnectionChannel::requeueCurrentlyPipelinedRequests | ( | ) |
Definition at line 608 of file qhttpnetworkconnectionchannel.cpp.
Referenced by _q_disconnected(), _q_error(), allDone(), closeAndResendCurrentRequest(), handleUnexpectedEOF(), and resendCurrentRequest().
void QHttpNetworkConnectionChannel::requeueHttp2Requests | ( | ) |
Definition at line 1347 of file qhttpnetworkconnectionchannel.cpp.
Referenced by _q_encrypted().
void QHttpNetworkConnectionChannel::resendCurrentRequest | ( | ) |
Definition at line 803 of file qhttpnetworkconnectionchannel.cpp.
References reply, requeueCurrentlyPipelinedRequests(), and resendCurrent.
Referenced by _q_error().
bool QHttpNetworkConnectionChannel::resetUploadData | ( | ) |
Definition at line 689 of file qhttpnetworkconnectionchannel.cpp.
References reply.
Referenced by handleStatus().
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().
void QHttpNetworkConnectionChannel::sendRequestDelayed | ( | ) |
Definition at line 242 of file qhttpnetworkconnectionchannel.cpp.
Referenced by _q_encrypted().
void QHttpNetworkConnectionChannel::setConnection | ( | QHttpNetworkConnection * | c | ) |
Definition at line 1416 of file qhttpnetworkconnectionchannel.cpp.
void QHttpNetworkConnectionChannel::setProxy | ( | const QNetworkProxy & | networkProxy | ) |
Definition at line 712 of file qhttpnetworkconnectionchannel.cpp.
void QHttpNetworkConnectionChannel::setSslConfiguration | ( | const QSslConfiguration & | config | ) |
Definition at line 741 of file qhttpnetworkconnectionchannel.cpp.
|
friend |
Definition at line 189 of file qhttpnetworkconnectionchannel_p.h.
QList<HttpMessagePair> QHttpNetworkConnectionChannel::alreadyPipelinedRequests |
Definition at line 121 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::authenticationCredentialsSent |
Definition at line 97 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), QHttpNetworkConnectionPrivate::createAuthorization(), and ensureConnection().
QAuthenticator QHttpNetworkConnectionChannel::authenticator |
Definition at line 95 of file qhttpnetworkconnectionchannel_p.h.
qint64 QHttpNetworkConnectionChannel::bytesTotal |
Definition at line 90 of file qhttpnetworkconnectionchannel_p.h.
QPointer<QHttpNetworkConnection> QHttpNetworkConnectionChannel::connection |
Definition at line 133 of file qhttpnetworkconnectionchannel_p.h.
QMultiMap<int, HttpMessagePair> QHttpNetworkConnectionChannel::h2RequestsToSend |
Definition at line 100 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::ignoreAllSslErrors |
Definition at line 103 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), ensureConnection(), ignoreSslErrors(), and init().
Definition at line 104 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::isInitialized |
Definition at line 81 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), ensureConnection(), and init().
int QHttpNetworkConnectionChannel::lastStatus |
Definition at line 92 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), and QHttpNetworkConnectionPrivate::createAuthorization().
bool QHttpNetworkConnectionChannel::needInvokeReadyRead = false |
Definition at line 84 of file qhttpnetworkconnectionchannel_p.h.
Referenced by _q_readyRead(), and checkAndResumeCommunication().
bool QHttpNetworkConnectionChannel::needInvokeReceiveReply = false |
Definition at line 83 of file qhttpnetworkconnectionchannel_p.h.
Referenced by _q_receiveReply().
bool QHttpNetworkConnectionChannel::needInvokeSendRequest = false |
Definition at line 85 of file qhttpnetworkconnectionchannel_p.h.
Referenced by checkAndResumeCommunication(), and sendRequest().
QAbstractSocket::NetworkLayerProtocol QHttpNetworkConnectionChannel::networkLayerPreference |
Definition at line 130 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::pendingEncrypt |
Definition at line 93 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), _q_connected_abstract_socket(), _q_disconnected(), _q_encrypted(), _q_error(), abort(), close(), and ensureConnection().
QByteArray QHttpNetworkConnectionChannel::pipeline |
Definition at line 122 of file qhttpnetworkconnectionchannel_p.h.
PipeliningSupport QHttpNetworkConnectionChannel::pipeliningSupported |
Definition at line 120 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), _q_connected_abstract_socket(), detectPipeliningSupport(), and ensureConnection().
std::unique_ptr<QAbstractProtocolHandler> QHttpNetworkConnectionChannel::protocolHandler |
Definition at line 99 of file qhttpnetworkconnectionchannel_p.h.
QNetworkProxy QHttpNetworkConnectionChannel::proxy |
Definition at line 136 of file qhttpnetworkconnectionchannel_p.h.
QAuthenticator QHttpNetworkConnectionChannel::proxyAuthenticator |
Definition at line 96 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::proxyCredentialsSent |
Definition at line 98 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), and ensureConnection().
int QHttpNetworkConnectionChannel::reconnectAttempts |
Definition at line 94 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), _q_error(), allDone(), and handleUnexpectedEOF().
QHttpNetworkReply* QHttpNetworkConnectionChannel::reply |
Definition at line 88 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), _q_connected_abstract_socket(), _q_disconnected(), _q_encrypted(), _q_error(), _q_preSharedKeyAuthenticationRequired(), _q_sslErrors(), _q_uploadDataReadyRead(), allDone(), closeAndResendCurrentRequest(), detectPipeliningSupport(), emitFinishedWithError(), QHttpNetworkConnectionPrivate::emitProxyAuthenticationRequired(), ensureConnection(), handleStatus(), handleUnexpectedEOF(), resendCurrentRequest(), and resetUploadData().
QHttpNetworkRequest QHttpNetworkConnectionChannel::request |
Definition at line 87 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::resendCurrent |
Definition at line 91 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), allDone(), closeAndResendCurrentRequest(), ensureConnection(), handleStatus(), and resendCurrentRequest().
QIODevice* QHttpNetworkConnectionChannel::socket |
Definition at line 79 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::ssl |
Definition at line 80 of file qhttpnetworkconnectionchannel_p.h.
Referenced by QHttpNetworkConnectionChannel(), _q_bytesWritten(), _q_connected_abstract_socket(), and ensureConnection().
QScopedPointer<QSslConfiguration> QHttpNetworkConnectionChannel::sslConfiguration |
Definition at line 105 of file qhttpnetworkconnectionchannel_p.h.
ChannelState QHttpNetworkConnectionChannel::state |
Definition at line 86 of file qhttpnetworkconnectionchannel_p.h.
bool QHttpNetworkConnectionChannel::switchedToHttp2 = false |
Definition at line 101 of file qhttpnetworkconnectionchannel_p.h.
Referenced by _q_connected_abstract_socket(), _q_encrypted(), and allDone().
bool QHttpNetworkConnectionChannel::waitingForPotentialAbort = false |
Definition at line 82 of file qhttpnetworkconnectionchannel_p.h.
Referenced by _q_encrypted(), _q_readyRead(), _q_receiveReply(), checkAndResumeCommunication(), and sendRequest().
qint64 QHttpNetworkConnectionChannel::written |
Definition at line 89 of file qhttpnetworkconnectionchannel_p.h.