Move HTTP_RESPONSE_CHUNK_SIZE into lambda for http response

This commit is contained in:
Ryan Huffman 2018-02-15 09:36:59 -08:00
parent b832e118cc
commit 145a8b385b

View file

@ -183,9 +183,9 @@ void HTTPConnection::respond(const char* code, std::unique_ptr<QIODevice> device
if (_responseDevice->atEnd()) {
_socket->disconnectFromHost();
} else {
constexpr size_t HTTP_RESPONSE_CHUNK_SIZE = 1024 * 10;
int totalToBeWritten = csize;
connect(_socket, &QTcpSocket::bytesWritten, this, [this, totalToBeWritten](size_t bytes) mutable {
constexpr size_t HTTP_RESPONSE_CHUNK_SIZE = 1024 * 10;
if (!_responseDevice->atEnd()) {
totalToBeWritten -= _socket->write(_responseDevice->read(HTTP_RESPONSE_CHUNK_SIZE));
if (_responseDevice->atEnd()) {