aboutsummaryrefslogtreecommitdiff
path: root/lib/vquic/quiche.c
diff options
context:
space:
mode:
authorBarry Pollard <barry_pollard@hotmail.com>2019-09-22 21:17:12 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-09-23 22:33:31 +0200
commit0023fce38d3bd6ee0e9b6ff8708fee1195057846 (patch)
tree32947dcf8bf1767126f2dfbfffeb150752a1450b /lib/vquic/quiche.c
parent527461285f54bca59356e2c550d55ed9606e96d1 (diff)
http: lowercase headernames for HTTP/2 and HTTP/3
Closes #4401 Fixes #4400
Diffstat (limited to 'lib/vquic/quiche.c')
-rw-r--r--lib/vquic/quiche.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c
index 4d53d1535..b5548cc2f 100644
--- a/lib/vquic/quiche.c
+++ b/lib/vquic/quiche.c
@@ -646,8 +646,10 @@ static CURLcode http_request(struct connectdata *conn, const void *mem,
nva[i].name_len = strlen((char *)nva[i].name);
}
else {
- nva[i].name = (unsigned char *)hdbuf;
nva[i].name_len = (size_t)(end - hdbuf);
+ /* Lower case the header name for HTTP/3 */
+ Curl_strntolower((char *)hdbuf, hdbuf, nva[i].name_len);
+ nva[i].name = (unsigned char *)hdbuf;
}
hdbuf = end + 1;
while(*hdbuf == ' ' || *hdbuf == '\t')