mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 07:18:08 +00:00
Avoid needless string-bytes conversion
This saves a few microseconds.
This commit is contained in:
parent
3c5688c6f6
commit
ad9d0608d4
@ -45,16 +45,20 @@ QByteArray Http::toByteArray(Response response)
|
|||||||
buf.reserve(1024 + response.content.length());
|
buf.reserve(1024 + response.content.length());
|
||||||
|
|
||||||
// Status Line
|
// Status Line
|
||||||
buf += QString("HTTP/%1 %2 %3")
|
buf.append("HTTP/1.1 ") // TODO: depends on request
|
||||||
.arg("1.1", // TODO: depends on request
|
.append(QByteArray::number(response.status.code))
|
||||||
QString::number(response.status.code),
|
.append(' ')
|
||||||
response.status.text)
|
.append(response.status.text.toLatin1())
|
||||||
.toLatin1()
|
|
||||||
.append(CRLF);
|
.append(CRLF);
|
||||||
|
|
||||||
// Header Fields
|
// Header Fields
|
||||||
for (auto i = response.headers.constBegin(); i != response.headers.constEnd(); ++i)
|
for (auto i = response.headers.constBegin(); i != response.headers.constEnd(); ++i)
|
||||||
buf += QString::fromLatin1("%1: %2").arg(i.key(), i.value()).toLatin1().append(CRLF);
|
{
|
||||||
|
buf.append(i.key().toLatin1())
|
||||||
|
.append(": ")
|
||||||
|
.append(i.value().toLatin1())
|
||||||
|
.append(CRLF);
|
||||||
|
}
|
||||||
|
|
||||||
// the first empty line
|
// the first empty line
|
||||||
buf += CRLF;
|
buf += CRLF;
|
||||||
|
Loading…
Reference in New Issue
Block a user