aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c/http.c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2020-08-07 13:17:34 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2020-08-07 13:17:34 -0400
commitece3b06793da8276ab9b74c62b962eae4f6dc3ec (patch)
treebbc7f28a737370f0638850b7e509b9f4253a01bf /src/c/http.c
parent50ee7dd5ce885786242cc64ca8f0bb76749b1682 (diff)
Increase HTTP request size limit again
Diffstat (limited to 'src/c/http.c')
-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 22e7278e..9905136c 100644
--- a/src/c/http.c
+++ b/src/c/http.c
@@ -83,7 +83,7 @@ static void log_debug(void *data, const char *fmt, ...) {
static uw_loggers ls = {NULL, log_error, log_debug};
-static unsigned max_buf_size = 200 * 1024 * 1024; // That's 200MB.
+static unsigned max_buf_size = 300 * 1024 * 1024; // That's 300MB.
static void *worker(void *data) {
int me = *(int *)data;