mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-29 19:18:42 -07:00
Define and use Http::HeaderMap type
This commit is contained in:
parent
d57b9be706
commit
be152f45c9
3 changed files with 7 additions and 6 deletions
|
@ -57,7 +57,7 @@ namespace
|
|||
return in;
|
||||
}
|
||||
|
||||
bool parseHeaderLine(const QString &line, QStringMap &out)
|
||||
bool parseHeaderLine(const QString &line, HeaderMap &out)
|
||||
{
|
||||
// [rfc7230] 3.2. Header Fields
|
||||
const int i = line.indexOf(':');
|
||||
|
@ -287,7 +287,7 @@ bool RequestParser::parseFormData(const QByteArray &data)
|
|||
const QString headers = QString::fromLatin1(list[0]);
|
||||
const QByteArray payload = viewWithoutEndingWith(list[1], CRLF);
|
||||
|
||||
QStringMap headersMap;
|
||||
HeaderMap headersMap;
|
||||
const QVector<QStringRef> headerLines = headers.splitRef(CRLF, QString::SkipEmptyParts);
|
||||
for (const auto &line : headerLines) {
|
||||
if (line.trimmed().startsWith(HEADER_CONTENT_DISPOSITION, Qt::CaseInsensitive)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue