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

Whitespace OCD

parent 864dd9cc
...@@ -1793,77 +1793,77 @@ PARAM( ...@@ -1793,77 +1793,77 @@ PARAM(
) )
PARAM( PARAM(
/* name */ h2_header_table_size, /* name */ h2_header_table_size,
/* typ */ bytes_u, /* typ */ bytes_u,
/* min */ "0b", /* min */ "0b",
/* max */ NULL, /* max */ NULL,
/* default */ "4k", /* default */ "4k",
/* units */ "bytes", /* units */ "bytes",
/* flags */ 0, /* flags */ 0,
/* s-text */ /* s-text */
"HTTP2 header table size.\n" "HTTP2 header table size.\n"
"This is the size that will be used for the HPACK dynamic\n" "This is the size that will be used for the HPACK dynamic\n"
"decoding table.", "decoding table.",
/* l-text */ "", /* l-text */ "",
/* func */ NULL /* func */ NULL
) )
PARAM( PARAM(
/* name */ h2_max_concurrent_streams, /* name */ h2_max_concurrent_streams,
/* typ */ uint, /* typ */ uint,
/* min */ "0", /* min */ "0",
/* max */ NULL, /* max */ NULL,
/* default */ "100", /* default */ "100",
/* units */ "streams", /* units */ "streams",
/* flags */ 0, /* flags */ 0,
/* s-text */ /* s-text */
"HTTP2 Maximum number of concurrent streams.\n" "HTTP2 Maximum number of concurrent streams.\n"
"This is the number of requests that can be active\n" "This is the number of requests that can be active\n"
"at the same time for a single HTTP2 connection.", "at the same time for a single HTTP2 connection.",
/* l-text */ "", /* l-text */ "",
/* func */ NULL /* func */ NULL
) )
PARAM( PARAM(
/* name */ h2_initial_window_size, /* name */ h2_initial_window_size,
/* typ */ bytes_u, /* typ */ bytes_u,
/* min */ "0", /* min */ "0",
/* max */ "2147483647b", /* max */ "2147483647b",
/* default */ "65535b", /* default */ "65535b",
/* units */ "bytes", /* units */ "bytes",
/* flags */ 0, /* flags */ 0,
/* s-text */ /* s-text */
"HTTP2 initial flow control window size.", "HTTP2 initial flow control window size.",
/* l-text */ "", /* l-text */ "",
/* func */ NULL /* func */ NULL
) )
PARAM( PARAM(
/* name */ h2_max_frame_size, /* name */ h2_max_frame_size,
/* typ */ bytes_u, /* typ */ bytes_u,
/* min */ "16k", /* min */ "16k",
/* max */ "16777215b", /* max */ "16777215b",
/* default */ "16k", /* default */ "16k",
/* units */ "bytes", /* units */ "bytes",
/* flags */ 0, /* flags */ 0,
/* s-text */ /* s-text */
"HTTP2 maximum per frame payload size we are willing to accept.", "HTTP2 maximum per frame payload size we are willing to accept.",
/* l-text */ "", /* l-text */ "",
/* func */ NULL /* func */ NULL
) )
PARAM( PARAM(
/* name */ h2_max_header_list_size, /* name */ h2_max_header_list_size,
/* typ */ bytes_u, /* typ */ bytes_u,
/* min */ "0b", /* min */ "0b",
/* max */ NULL, /* max */ NULL,
/* default */ "2147483647b", /* default */ "2147483647b",
/* units */ "bytes", /* units */ "bytes",
/* flags */ 0, /* flags */ 0,
/* s-text */ /* s-text */
"HTTP2 maximum size of an uncompressed header list.", "HTTP2 maximum size of an uncompressed header list.",
/* l-text */ "", /* l-text */ "",
/* func */ NULL /* func */ NULL
) )
#undef PARAM #undef PARAM
......
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