h2load: Fix HTML formatting
This commit is contained in:
parent
5465cdf4a4
commit
006ac7b1b0
|
@ -1063,34 +1063,32 @@ Options:
|
||||||
Available protocol: )";
|
Available protocol: )";
|
||||||
#endif // !HAVE_SPDYLAY
|
#endif // !HAVE_SPDYLAY
|
||||||
out << NGHTTP2_CLEARTEXT_PROTO_VERSION_ID << R"(
|
out << NGHTTP2_CLEARTEXT_PROTO_VERSION_ID << R"(
|
||||||
Default: )"
|
Default: )" << NGHTTP2_CLEARTEXT_PROTO_VERSION_ID << R"(
|
||||||
<< NGHTTP2_CLEARTEXT_PROTO_VERSION_ID << R"(
|
|
||||||
-d, --data=<FILE>
|
-d, --data=<FILE>
|
||||||
Post FILE to server. The request method is changed to
|
Post FILE to server. The request method is changed to
|
||||||
POST.
|
POST.
|
||||||
-r, --rate=<N>
|
-r, --rate=<N>
|
||||||
Specified the fixed rate at which connections are
|
Specified the fixed rate at which connections are
|
||||||
created. The rate must be a positive integer,
|
created. The rate must be a positive integer,
|
||||||
representing the number of connections to be made per
|
representing the number of connections to be made per
|
||||||
second. When the rate is 0, the program will run as it
|
second. When the rate is 0, the program will run as it
|
||||||
normally does, creating connections at whatever variable
|
normally does, creating connections at whatever variable
|
||||||
rate it wants. The default value for this option is 0.
|
rate it wants. The default value for this option is 0.
|
||||||
-C, --num-conns=<N>
|
-C, --num-conns=<N>
|
||||||
Specifies the total number of connections to create. The
|
Specifies the total number of connections to create.
|
||||||
total number of connections must be a positive integer.
|
The total number of connections must be a positive
|
||||||
On each connection, '-m' requests are made. The test
|
integer. On each connection, -m requests are made. The
|
||||||
stops once as soon as the N connections have either
|
test stops once as soon as the N connections have either
|
||||||
completed or failed. When the number of connections is
|
completed or failed. When the number of connections is
|
||||||
0, the program will run as it normally does, creating as
|
0, the program will run as it normally does, creating as
|
||||||
many connections as it needs in order to make the '-n'
|
many connections as it needs in order to make the -n
|
||||||
requests specified. The default value for this option is
|
requests specified. The default value for this option
|
||||||
0. The '-n' option is not required if the '-C' option
|
is 0. The -n option is not required if the -C option is
|
||||||
is being used.
|
being used.
|
||||||
-v, --verbose
|
-v, --verbose
|
||||||
Output debug information.
|
Output debug information.
|
||||||
--version Display version information and exit.
|
--version Display version information and exit.
|
||||||
-h, --help Display this help and exit.)"
|
-h, --help Display this help and exit.)" << std::endl;
|
||||||
<< std::endl;
|
|
||||||
}
|
}
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue