From fb9b85a40e1c7c0626bd1dbbd466b0c3427a07ff Mon Sep 17 00:00:00 2001 From: Nick Braun Date: Fri, 20 Dec 2024 04:56:18 -0800 Subject: [PATCH] Increase MAX_HEADER_SIZE Increases the MAX_HEADER_SIZE in cmdline to be 4K --- cmdline.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmdline.h b/cmdline.h index 18b77e9..93cf460 100644 --- a/cmdline.h +++ b/cmdline.h @@ -23,7 +23,7 @@ #ifndef _cmdline_h #define _cmdline_h -#define MAX_HEADER_SIZE 1024 +#define MAX_HEADER_SIZE 4096 struct gengetopt_args_info { char *user_arg; /* Username to send to HTTPS proxy for auth. */