summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2024-04-17 21:34:20 +0200
committerDirk Engling <erdgeist@erdgeist.org>2024-04-17 21:34:20 +0200
commitb56e648b5e96f33db6d1cab9b43d613579837b04 (patch)
treec3a294f504915bad1ec5e2815e31da75f8dcc475
parentff03fd74496620e884bdf9bfec47afaf7e4e4d1a (diff)
Let our fullscrapes have a binary content-type
-rw-r--r--ot_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ot_http.c b/ot_http.c
index 209ad15..b70d38d 100644
--- a/ot_http.c
+++ b/ot_http.c
@@ -165,11 +165,11 @@ ssize_t http_sendiovecdata(const int64 sock, struct ot_workstruct *ws, int iovec
165 encoding = "Content-Encoding: bzip2\r\n"; 165 encoding = "Content-Encoding: bzip2\r\n";
166 166
167 if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED)) 167 if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED))
168 header_size = asprintf(&header, "HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\n%sContent-Length: %zd\r\n\r\n", encoding, size); 168 header_size = asprintf(&header, "HTTP/1.1 200 OK\r\nContent-Type: application/octet-stream\r\n%sContent-Length: %zd\r\n\r\n", encoding, size);
169 else { 169 else {
170 if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER)) { 170 if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER)) {
171 header_size = 171 header_size =
172 asprintf(&header, "HTTP/1.1 200 OK\r\nContent-Type: text/plain\r\n%sTransfer-Encoding: chunked\r\n\r\n%zx\r\n", encoding, size); 172 asprintf(&header, "HTTP/1.1 200 OK\r\nContent-Type: application/octet-stream\r\n%sTransfer-Encoding: chunked\r\n\r\n%zx\r\n", encoding, size);
173 cookie->flag |= STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER; 173 cookie->flag |= STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER;
174 } else 174 } else
175 header_size = asprintf(&header, "%zx\r\n", size); 175 header_size = asprintf(&header, "%zx\r\n", size);