From 68cf048ec0c581c5debd293363ed0037bb07a920 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Wed, 30 Jan 2019 18:22:52 -0500 Subject: Bump up maximum size for HTTP receive buffers --- src/c/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/http.c b/src/c/http.c index 72685508..68c16e0b 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -80,7 +80,7 @@ static void log_debug(void *data, const char *fmt, ...) { static uw_loggers ls = {NULL, log_error, log_debug}; -static unsigned max_buf_size = 1024 * 1024; // That's 1MB. +static unsigned max_buf_size = 10 * 1024 * 1024; // That's 10MB. static void *worker(void *data) { int me = *(int *)data; -- cgit v1.2.3