From ff03fd74496620e884bdf9bfec47afaf7e4e4d1a Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Wed, 17 Apr 2024 15:03:14 +0200 Subject: chrome does not accept chunked gzip encoding for http/1.0 protocol version --- ot_http.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ot_http.c b/ot_http.c index 46390fe..209ad15 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 encoding = "Content-Encoding: bzip2\r\n"; if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED)) - header_size = asprintf(&header, "HTTP/1.0 200 OK\r\nContent-Type: text/plain\r\n%sContent-Length: %zd\r\n\r\n", encoding, size); + 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); else { if (!(cookie->flag & STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER)) { header_size = - asprintf(&header, "HTTP/1.0 200 OK\r\nContent-Type: application/octet-stream\r\n%sTransfer-Encoding: chunked\r\n\r\n%zx\r\n", encoding, size); + 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); cookie->flag |= STRUCT_HTTP_FLAG_CHUNKED_IN_TRANSFER; } else header_size = asprintf(&header, "%zx\r\n", size); -- cgit v1.2.3