diff options
author | Peter Hartmann <peter.hartmann@nokia.com> | 2011-02-22 10:49:39 +0100 |
---|---|---|
committer | Peter Hartmann <peter.hartmann@nokia.com> | 2011-02-23 15:07:05 +0100 |
commit | 60d972c8a39a691ea5a7afb79138fcd77a529605 (patch) | |
tree | 90d1b67a536d3758a2ce8a92cc7d2f13d03a7d01 /tests/auto/network.pro | |
parent | 9741b5c067496e24fbf37395e954003d0803c72e (diff) | |
download | qt4-tools-60d972c8a39a691ea5a7afb79138fcd77a529605.tar.gz |
SSL backend: loat root certificates on demand on Unix (excluding Mac)
Previously, on initializing the first QSslSocket, we read all root
certificates into memory (~ 150 files).
Now, we tell OpenSSL where to find the root certificates, so that they
can be loaded on demand (if supported, see 'man c_rehash' for details).
Reviewed-by: Markus Goetz
Task-number: QTBUG-14016
Diffstat (limited to 'tests/auto/network.pro')
-rw-r--r-- | tests/auto/network.pro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/network.pro b/tests/auto/network.pro index 7d83054c47..b427f1c1bd 100644 --- a/tests/auto/network.pro +++ b/tests/auto/network.pro @@ -35,6 +35,8 @@ SUBDIRS=\ qsslerror \ qsslkey \ qsslsocket \ + qsslsocket_onDemandCertificates_member \ + qsslsocket_onDemandCertificates_static \ # qnetworkproxyfactory \ # Uses a hardcoded proxy configuration !contains(QT_CONFIG, private_tests): SUBDIRS -= \ |