MINOR: h1: add headers to the list after controls, not before
This will ease removal/skipping of duplicates such as content-length.
diff --git a/src/h1.c b/src/h1.c
index b78f584..65e7495 100644
--- a/src/h1.c
+++ b/src/h1.c
@@ -1271,8 +1271,6 @@
goto http_output_full;
}
- http_set_hdr(&hdr[hdr_count++], n, v);
-
if (isteqi(n, ist("transfer-encoding"))) {
h1m->flags &= ~H1_MF_CLEN;
h1m->flags |= H1_MF_CHNK;
@@ -1285,6 +1283,8 @@
else if (isteqi(n, ist("connection"))) {
h1_parse_connection_header(h1m, v);
}
+
+ http_set_hdr(&hdr[hdr_count++], n, v);
}
sol = ptr - start;