h2load: Format default value of header table size with unit

This commit is contained in:
Tatsuhiro Tsujikawa 2016-10-06 23:16:30 +09:00
parent e4472b5aec
commit d1624d6929
1 changed files with 3 additions and 2 deletions

View File

@ -1780,13 +1780,14 @@ Options:
http/1.1 for both http and https URI.
--header-table-size=<SIZE>
Specify decoder header table size.
Default: )" << config.header_table_size << R"(
Default: )" << util::utos_unit(config.header_table_size) << R"(
--encoder-header-table-size=<SIZE>
Specify encoder header table size. The decoder (server)
specifies the maximum dynamic table size it accepts.
Then the negotiated dynamic table size is the minimum of
this option value and the value which server specified.
Default: )" << config.encoder_header_table_size << R"(
Default: )" << util::utos_unit(config.encoder_header_table_size)
<< R"(
-v, --verbose
Output debug information.
--version Display version information and exit.