From d1624d692932ba75c9f7ca1c5bc52fa209c5dd25 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 6 Oct 2016 23:16:30 +0900 Subject: [PATCH] h2load: Format default value of header table size with unit --- src/h2load.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/h2load.cc b/src/h2load.cc index 4d795528..78ca2275 100644 --- a/src/h2load.cc +++ b/src/h2load.cc @@ -1780,13 +1780,14 @@ Options: http/1.1 for both http and https URI. --header-table-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= 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.