support expect 100 continue

This commit is contained in:
Adam D. Ruppe 2020-11-10 21:06:06 -05:00
parent acabbf1c4a
commit 1e997855a2
1 changed files with 10 additions and 3 deletions

13
cgi.d
View File

@ -440,9 +440,6 @@ enum long defaultMaxContentLength = 5_000_000;
// somehow in here and dom.d.
// FIXME: 100 Continue in the nph section? Probably belongs on the
// httpd class though.
// these are public so you can mixin GenericMain.
// FIXME: use a function level import instead!
public import std.string;
@ -1836,6 +1833,16 @@ class Cgi {
}
else if (name == "cookie") {
cookie ~= value;
} else if(name == "expect") {
if(value == "100-continue") {
// FIXME we should probably give user code a chance
// to process and reject but that needs to be virtual,
// perhaps part of the CGI redesign.
// FIXME: if size is > max content length it should
// also fail at this point.
_rawDataOutput(cast(ubyte[]) "HTTP/1.1 100 Continue\r\n\r\n");
}
}
// else
// ignore it