Merge branch 'master' of github.com:adamdruppe/arsd

This commit is contained in:
Adam D. Ruppe 2022-08-06 10:19:02 -04:00
commit 1365a05f5a
1 changed files with 5 additions and 15 deletions

20
http2.d
View File

@ -1918,41 +1918,32 @@ class HttpRequest {
auto header = responseData.headers[$-1]; auto header = responseData.headers[$-1];
auto colon = header.indexOf(":"); auto colon = header.indexOf(":");
if(colon == -1) if(colon < 0 || colon >= header.length)
return; return;
auto name = header[0 .. colon]; auto name = toLower(header[0 .. colon]);
if(colon + 1 == header.length || colon + 2 == header.length) // assuming a space there auto value = header[colon + 1 .. $].strip; // skip colon and strip whitespace
return; // empty header, idk
assert(colon + 2 < header.length, header);
auto value = header[colon + 2 .. $]; // skipping the colon itself and the following space
switch(name) { switch(name) {
case "Connection":
case "connection": case "connection":
if(value == "close") if(value == "close")
closeSocketWhenComplete = true; closeSocketWhenComplete = true;
break; break;
case "Content-Type":
case "content-type": case "content-type":
responseData.contentType = value; responseData.contentType = value;
break; break;
case "Location":
case "location": case "location":
responseData.location = value; responseData.location = value;
break; break;
case "Content-Length":
case "content-length": case "content-length":
bodyReadingState.contentLengthRemaining = to!int(value.strip); bodyReadingState.contentLengthRemaining = to!int(value);
break; break;
case "Transfer-Encoding":
case "transfer-encoding": case "transfer-encoding":
// note that if it is gzipped, it zips first, then chunks the compressed stream. // 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 // so we should always dechunk first, then feed into the decompressor
if(value.strip == "chunked") if(value == "chunked")
bodyReadingState.isChunked = true; bodyReadingState.isChunked = true;
else throw new Exception("Unknown Transfer-Encoding: " ~ value); else throw new Exception("Unknown Transfer-Encoding: " ~ value);
break; break;
case "Content-Encoding":
case "content-encoding": case "content-encoding":
if(value == "gzip") { if(value == "gzip") {
bodyReadingState.isGzipped = true; bodyReadingState.isGzipped = true;
@ -1962,7 +1953,6 @@ class HttpRequest {
uncompress = new UnCompress(); uncompress = new UnCompress();
} else throw new Exception("Unknown Content-Encoding: " ~ value); } else throw new Exception("Unknown Content-Encoding: " ~ value);
break; break;
case "Set-Cookie":
case "set-cookie": case "set-cookie":
// handled elsewhere fyi // handled elsewhere fyi
break; break;