aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/headers.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-03-22 05:53:08 +0000
committerLaurent Bercot <ska@appnovation.com>2025-03-22 05:53:08 +0000
commit9cd4e0d1902ebb196ebd53ed7ee88e6689d801b7 (patch)
treeab44d569dce124541085629f6dbe0cc27b1da0fa /src/config/headers.c
parent53fdbac9da06a0dfb3f2821f7c7384001eea4f68 (diff)
downloadtipidee-9cd4e0d1902ebb196ebd53ed7ee88e6689d801b7.tar.gz
Add cgi streaming
WILDLY UNTESTED, don't use this commit, probably. Also, autochunk hasn't been implemented yet. Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/config/headers.c')
-rw-r--r--src/config/headers.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/headers.c b/src/config/headers.c
index efeb712..2a34bba 100644
--- a/src/config/headers.c
+++ b/src/config/headers.c
@@ -30,6 +30,7 @@ static struct builtinheaders_s const builtinheaders[] =
{ .key = "Date", .value = 0, .overridable = 0 },
{ .key = "Server", .value = "tipidee/" TIPIDEE_VERSION, .overridable = 1 },
{ .key = "Status", .value = 0, .overridable = 0 },
+ { .key = "Transfer-Encoding", .value = 0, .overridable = 0 },
{ .key = "Vary", .value = "Accept-Encoding", .overridable = 0 },
{ .key = "X-Content-Type-Options", .value = "nosniff", .overridable = 1 },
{ .key = "X-Frame-Options", .value = "DENY", .overridable = 1 }