From f2cca1291585f508b917b6b0a3ac5bd8310f6042 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Mon, 3 Oct 2022 17:39:39 +0200 Subject: [PATCH] [http] Set POST_BUFFER_SIZE to 4096 Patch from Debian --- src/protocol/http/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/http/http.c b/src/protocol/http/http.c index 107b590f..9f42b21a 100644 --- a/src/protocol/http/http.c +++ b/src/protocol/http/http.c @@ -629,7 +629,7 @@ accept_encoding_header(struct string *header) #endif } -#define POST_BUFFER_SIZE 16384 +#define POST_BUFFER_SIZE 4096 static void send_more_post_data(struct socket *socket)