summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2019-01-30 18:22:52 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2019-01-30 18:22:52 -0500
commit68cf048ec0c581c5debd293363ed0037bb07a920 (patch)
tree802efdce6911e9907ccb753328ec062086f41aba
parentb8b2375819b2ac9fefb3299dcbb1e04f51cb71a6 (diff)
Bump up maximum size for HTTP receive buffers
-rw-r--r--src/c/http.c2
1 files changed, 1 insertions, 1 deletions
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;