Commit ee901d47 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Increase session_workspace to 64k on non-32bit systems.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4536 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 9c9e2f9d
...@@ -523,7 +523,12 @@ static const struct parspec input_parspec[] = { ...@@ -523,7 +523,12 @@ static const struct parspec input_parspec[] = {
"header and any edits done to it in the VCL code.\n" "header and any edits done to it in the VCL code.\n"
"Minimum is 1024 bytes.", "Minimum is 1024 bytes.",
DELAYED_EFFECT, DELAYED_EFFECT,
"16384", "bytes" }, #if SIZE_MAX <= UINT32_MAX
"16384",
#else
"65536",
#endif
"bytes" },
{ "http_headers", tweak_uint, &master.http_headers, 32, UINT_MAX, { "http_headers", tweak_uint, &master.http_headers, 32, UINT_MAX,
"Maximum number of HTTP headers we will deal with.\n" "Maximum number of HTTP headers we will deal with.\n"
"This space is preallocated in sessions and workthreads only " "This space is preallocated in sessions and workthreads only "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment