Can I disable Nagle on `QNetworkAccessManager` requests?

Viewed 119

We are using the QNetworkAccessManager for our http/s requests. Some details for the request can be set via QSslConfiguration.

Unfortunately I cannot use the LowDelayOption (or I do not know how).

QAbstractSocket::LowDelayOption

Try to optimize the socket for low latency. For a QTcpSocket this would set the TCP_NODELAY option and disable Nagle's algorithm. Set this to 1 to enable.

Can I somehow use "no nagle" (low latency) with the QNetworkAccessManager?

0 Answers
Related