diff options
| author | Markus Goetz <markus@woboq.com> | 2021-06-07 16:56:59 +0200 |
|---|---|---|
| committer | Markus Goetz <markus@woboq.com> | 2021-07-20 22:08:39 +0200 |
| commit | e1b010ff47ae81067802d9240ea990d6d9187484 (patch) | |
| tree | 612acc4acf7585aec439262326442b1a993ad168 /src/network/access/qnetworkreply.cpp | |
| parent | 5e688a72046972b871347ff4d8dd141cdf9f2cef (diff) | |
QNetworkReply: Add two new signals
These signals allow monitoring where in the HTTP1/HTTP2
flow a request is currently in.
Fixes: QTBUG-71698
Fixes: QTBUG-18766
Change-Id: Icc2fe435afc9f680fa7a76c32731e25fcdfeb4b4
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'src/network/access/qnetworkreply.cpp')
| -rw-r--r-- | src/network/access/qnetworkreply.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/network/access/qnetworkreply.cpp b/src/network/access/qnetworkreply.cpp index c69bcc951e0..09356e59cd9 100644 --- a/src/network/access/qnetworkreply.cpp +++ b/src/network/access/qnetworkreply.cpp @@ -322,6 +322,27 @@ QNetworkReplyPrivate::QNetworkReplyPrivate() */ /*! + \fn void QNetworkReply::socketConnecting() + \since 6.3 + + This signal is emitted 0 or more times, when the socket + is connecting, before sending the request. Useful for + custom progress or timeout handling. + + \sa metaDataChanged(), requestSent() +*/ + +/*! + \fn void QNetworkReply::requestSent() + \since 6.3 + + This signal is emitted 1 or more times when the request was + sent. Useful for custom progress or timeout handling. + + \sa metaDataChanged(), socketConnecting() +*/ + +/*! \fn void QNetworkReply::metaDataChanged() \omit FIXME: Update name? \endomit |
