summaryrefslogtreecommitdiffstats
path: root/src/network/access/qnetworkreply_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/access/qnetworkreply_p.h')
-rw-r--r--src/network/access/qnetworkreply_p.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/network/access/qnetworkreply_p.h b/src/network/access/qnetworkreply_p.h
index ad11ef3964..55d3d85592 100644
--- a/src/network/access/qnetworkreply_p.h
+++ b/src/network/access/qnetworkreply_p.h
@@ -65,6 +65,16 @@ QT_BEGIN_NAMESPACE
class QNetworkReplyPrivate: public QIODevicePrivate, public QNetworkHeadersPrivate
{
public:
+ enum State {
+ Idle, // The reply is idle.
+ Buffering, // The reply is buffering outgoing data.
+ Working, // The reply is uploading/downloading data.
+ Finished, // The reply has finished.
+ Aborted, // The reply has been aborted.
+ WaitingForSession, // The reply is waiting for the session to open before connecting.
+ Reconnecting // The reply will reconnect to once roaming has completed.
+ };
+
QNetworkReplyPrivate();
QNetworkRequest request;
QUrl url;