summaryrefslogtreecommitdiffstats
path: root/src/network/access/qnetworkaccessmanager_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/access/qnetworkaccessmanager_p.h')
-rw-r--r--src/network/access/qnetworkaccessmanager_p.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/network/access/qnetworkaccessmanager_p.h b/src/network/access/qnetworkaccessmanager_p.h
index cf4d2f3..ee6ad70 100644
--- a/src/network/access/qnetworkaccessmanager_p.h
+++ b/src/network/access/qnetworkaccessmanager_p.h
@@ -59,6 +59,7 @@
#include "private/qobject_p.h"
#include "QtNetwork/qnetworkproxy.h"
#include "QtNetwork/qnetworksession.h"
+#include "qnetworkaccessauthenticationmanager_p.h"
QT_BEGIN_NAMESPACE
@@ -72,6 +73,7 @@ class QNetworkAccessManagerPrivate: public QObjectPrivate
public:
QNetworkAccessManagerPrivate()
: networkCache(0), cookieJar(0),
+ httpThread(0),
#ifndef QT_NO_NETWORKPROXY
proxyFactory(0),
#endif
@@ -81,7 +83,8 @@ public:
online(false),
initializeSession(true),
#endif
- cookieJarCreated(false)
+ cookieJarCreated(false),
+ authenticationManager(new QNetworkAccessAuthenticationManager)
{ }
~QNetworkAccessManagerPrivate();
@@ -121,6 +124,8 @@ public:
QNetworkCookieJar *cookieJar;
+ QThread *httpThread;
+
#ifndef QT_NO_NETWORKPROXY
QNetworkProxy proxy;
@@ -137,6 +142,9 @@ public:
bool cookieJarCreated;
+ // The cache with authorization data:
+ QSharedPointer<QNetworkAccessAuthenticationManager> authenticationManager;
+
// this cache can be used by individual backends to cache e.g. their TCP connections to a server
// and use the connections for multiple requests.
QNetworkAccessCache objectCache;
e='bug_3610404'>bug_3610404 Tcl is a high-level, general-purpose, interpreted, dynamic programming language. It was designed with the goal of being very simple but powerful.
summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* autoconf-2.59das2006-05-261-2/+2
* updates for Xcode 2.3das2006-05-262-27/+3
* Fix [Bug 1494160]dkf2006-05-242-1/+6
* Typo. [Bug 1494160]dkf2006-05-241-2/+2
* Minor doc improvementsdkf2006-05-233-39/+44
* Silence compiler warning.dgp2006-05-151-2/+3
* * generic/tclProc.c (ProcCompileProc): When a bump of the compiledgp2006-05-132-5/+92
* * generic/tclEvent.c (HandleBgErrors): fix leak. [Coverity issue 86]das2006-05-122-16/+21
* * generic/tclMain.c (Tcl_Main): Corrected flaw that requireddgp2006-05-053-112/+140
* * README: Bump version number to 8.5a5dgp2006-05-0410-16/+27
* * generic/tclBasic.c (ExprSrandFunc): Restore acceptance of wide/bigdgp2006-05-043-8/+23
* * changes: Updates for another RC.core_8_5_a4dgp2006-04-262-4/+22
* * generic/tclBinary.c: Revised the handling of the Q and q formatdgp2006-04-264-12/+88
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-265-60/+101
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-252-38/+29
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-255-102/+120
* correct ChangeLog to reflect 2006-04-19 commit ofKevin B Kenny2006-04-241-0/+4
* fix for Martin Lemburg's DST conversion bug.Kevin B Kenny2006-04-194-9/+93
* more fine-tuning of the revised docsdgp2006-04-18