There is no API for this. It is hardcoded in qhttpnetworkconnection.cpp as follows
#ifdef Q_OS_SYMBIAN const int QHttpNetworkConnectionPrivate::defaultChannelCount = 3; #else const int QHttpNetworkConnectionPrivate::defaultChannelCount = 6; #endif
You can change it and create Qt yourself, or you can make a quick and very dirty hack suggested by the special channel IRC # qt irc.freenode.net in the form of the following code.
hackUrl.setUserName(QString::number(qrand()));
Referring to special:
the username of the URL in the connection cache is used, so as long as the username is different, this limit will not apply
source share