From: phk Date: Mon, 10 Jul 2006 10:05:48 +0000 (+0000) Subject: Drop the max length of first line, it's too expensive to enforce. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29cc0858e25da9008f9fcbac8123ea782f342e1c;p=varnish Drop the max length of first line, it's too expensive to enforce. git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@400 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/heritage.h b/varnish-cache/bin/varnishd/heritage.h index 622487ac..54f7c816 100644 --- a/varnish-cache/bin/varnishd/heritage.h +++ b/varnish-cache/bin/varnishd/heritage.h @@ -40,7 +40,6 @@ struct heritage { unsigned wthread_min, wthread_max; /* Memory allocation hints */ - unsigned mem_http_1_line; unsigned mem_http_headerspace; unsigned mem_http_headers; unsigned mem_workspace; diff --git a/varnish-cache/bin/varnishd/varnishd.c b/varnish-cache/bin/varnishd/varnishd.c index 60e57104..ddbf6e88 100644 --- a/varnish-cache/bin/varnishd/varnishd.c +++ b/varnish-cache/bin/varnishd/varnishd.c @@ -457,7 +457,6 @@ main(int argc, char *argv[]) heritage.default_ttl = 120; heritage.wthread_min = 5; heritage.wthread_max = 5; - heritage.mem_http_1_line= 512; heritage.mem_http_headerspace= 4096; heritage.mem_http_headers= 32; heritage.mem_workspace = 0;