From 99858826dcba3855fc2434b71f40087a4683aaea Mon Sep 17 00:00:00 2001 From: Alexander Belkov Date: Wed, 27 Dec 2017 17:56:19 +1000 Subject: [PATCH] Increased LINESIZE for huge GETs Increased buffer size for too long HTTP headers lines to support some nasty cloud services --- src/proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy.c b/src/proxy.c index ad76100..b885458 100644 --- a/src/proxy.c +++ b/src/proxy.c @@ -131,7 +131,7 @@ char * proxy_stringtable[] = { NULL }; -#define LINESIZE 4096 +#define LINESIZE 8192 #define BUFSIZE (LINESIZE*2) #define FTPBUFSIZE 1536