Commit 8a758381 authored by Rogier 'DocWilco' Mulhuijzen's avatar Rogier 'DocWilco' Mulhuijzen Committed by Tollef Fog Heen

Fix up some sess_workspace leftovers

Found by: Joakim Berg <flashn@glck.net>
parent 646d185e
...@@ -406,7 +406,7 @@ main(int argc, char * const *argv) ...@@ -406,7 +406,7 @@ main(int argc, char * const *argv)
* Adjust default parameters for 32 bit systems to conserve * Adjust default parameters for 32 bit systems to conserve
* VM space. * VM space.
*/ */
MCF_ParamSet(cli, "sess_workspace", "16384"); MCF_ParamSet(cli, "workspace_client", "16384");
cli_check(cli); cli_check(cli);
MCF_ParamSet(cli, "thread_pool_workspace", "16384"); MCF_ParamSet(cli, "thread_pool_workspace", "16384");
......
...@@ -725,8 +725,8 @@ static const struct parspec input_parspec[] = { ...@@ -725,8 +725,8 @@ static const struct parspec input_parspec[] = {
"Maximum number of bytes of HTTP client request we will deal " "Maximum number of bytes of HTTP client request we will deal "
"with. This is a limit on all bytes up to the double blank " "with. This is a limit on all bytes up to the double blank "
"line which ends the HTTP request.\n" "line which ends the HTTP request.\n"
"The memory for the request is allocated from the session " "The memory for the request is allocated from the client "
"workspace (param: sess_workspace) and this parameter limits " "workspace (param: workspace_client) and this parameter limits "
"how much of that the request is allowed to take up.", "how much of that the request is allowed to take up.",
0, 0,
"32k", "bytes" }, "32k", "bytes" },
...@@ -744,8 +744,8 @@ static const struct parspec input_parspec[] = { ...@@ -744,8 +744,8 @@ static const struct parspec input_parspec[] = {
"with. This is a limit on all bytes up to the double blank " "with. This is a limit on all bytes up to the double blank "
"line which ends the HTTP request.\n" "line which ends the HTTP request.\n"
"The memory for the request is allocated from the worker " "The memory for the request is allocated from the worker "
"workspace (param: sess_workspace) and this parameter limits " "workspace (param: thread_pool_workspace) and this parameter "
"how much of that the request is allowed to take up.", "limits how much of that the request is allowed to take up.",
0, 0,
"32k", "bytes" }, "32k", "bytes" },
{ "http_max_hdr", tweak_uint, &mgt_param.http_max_hdr, 32, 65535, { "http_max_hdr", tweak_uint, &mgt_param.http_max_hdr, 32, 65535,
......
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