diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2010-04-15 11:54:30 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2010-04-15 13:19:36 (GMT) |
commit | 0a93295aba1f5e80a03b095df68f22d0a805922f (patch) | |
tree | 8bdbaeec4515eee556cd9f2a09f7e1bc2610efc2 /tests/auto/qhttpnetworkconnection | |
parent | 55de2bd842a43e84f7bd3efb2cbc5d71640fbda4 (diff) | |
download | Qt-0a93295aba1f5e80a03b095df68f22d0a805922f.zip Qt-0a93295aba1f5e80a03b095df68f22d0a805922f.tar.gz Qt-0a93295aba1f5e80a03b095df68f22d0a805922f.tar.bz2 |
QNAM HTTP: Pipelining changes
Re-wrote some code to improve pipelining efficiency. Greatly helps
with combining into one TCP packet.
Task-number: QTBUG-9894
Task-number: QT-3280
Reviewed-by: Peter Hartmann
Diffstat (limited to 'tests/auto/qhttpnetworkconnection')
-rw-r--r-- | tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index 35ebbd9..0b55390 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -801,7 +801,7 @@ void tst_QHttpNetworkConnection::getMultiple_data() QTest::newRow("6 connections, no pipelining, 100 requests") << quint16(6) << false << 100; QTest::newRow("1 connection, no pipelining, 100 requests") << quint16(1) << false << 100; - QTest::newRow("6 connections, pipelining allowed, 100 requests") << quint16(2) << true << 100; + QTest::newRow("6 connections, pipelining allowed, 100 requests") << quint16(6) << true << 100; QTest::newRow("1 connection, pipelining allowed, 100 requests") << quint16(1) << true << 100; } |