From bcea652cfc6e2fec2c359b1e991c924ac3ac1e45 Mon Sep 17 00:00:00 2001 From: Ahmet Sait Date: Sat, 6 Aug 2022 17:02:06 +0300 Subject: [PATCH] Convert header names to lower case so headersHash keys are consistent --- http2.d | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/http2.d b/http2.d index e08a5aa..dd73b82 100644 --- a/http2.d +++ b/http2.d @@ -1918,41 +1918,32 @@ class HttpRequest { auto header = responseData.headers[$-1]; auto colon = header.indexOf(":"); - if(colon == -1) + if(colon < 0 || colon >= header.length) return; - auto name = header[0 .. colon]; - if(colon + 1 == header.length || colon + 2 == header.length) // assuming a space there - return; // empty header, idk - assert(colon + 2 < header.length, header); - auto value = header[colon + 2 .. $]; // skipping the colon itself and the following space + auto name = toLower(header[0 .. colon]); + auto value = header[colon + 1 .. $].strip; // skip colon and strip whitespace switch(name) { - case "Connection": case "connection": if(value == "close") closeSocketWhenComplete = true; break; - case "Content-Type": case "content-type": responseData.contentType = value; break; - case "Location": case "location": responseData.location = value; break; - case "Content-Length": case "content-length": - bodyReadingState.contentLengthRemaining = to!int(value.strip); + bodyReadingState.contentLengthRemaining = to!int(value); break; - case "Transfer-Encoding": case "transfer-encoding": // note that if it is gzipped, it zips first, then chunks the compressed stream. // so we should always dechunk first, then feed into the decompressor - if(value.strip == "chunked") + if(value == "chunked") bodyReadingState.isChunked = true; else throw new Exception("Unknown Transfer-Encoding: " ~ value); break; - case "Content-Encoding": case "content-encoding": if(value == "gzip") { bodyReadingState.isGzipped = true; @@ -1962,7 +1953,6 @@ class HttpRequest { uncompress = new UnCompress(); } else throw new Exception("Unknown Content-Encoding: " ~ value); break; - case "Set-Cookie": case "set-cookie": // handled elsewhere fyi break;