Updated help output of spdycat

This commit is contained in:
Tatsuhiro Tsujikawa 2012-05-09 23:41:15 +09:00
parent f45e68e05b
commit aca4269610
1 changed files with 6 additions and 6 deletions

View File

@ -390,8 +390,8 @@ int run(char **uris, int n)
void print_usage(std::ostream& out)
{
out << "Usage: spdycat [-Onv3] [-t=seconds] [-w=window_bits] [--cert=CERT]\n"
<< " [--key=KEY] URI..."
out << "Usage: spdycat [-Onv3] [-t <SECONDS>] [-w <WINDOW_BITS>] [--cert=<CERT>]\n"
<< " [--key=<KEY>] URI..."
<< std::endl;
}
@ -408,11 +408,11 @@ void print_help(std::ostream& out)
<< " ends with '/', 'index.html' is used as a\n"
<< " filename. Not implemented yet.\n"
<< " -3, --spdy3 Only use SPDY/3.\n"
<< " -t, --timeout=N Timeout each request after N seconds.\n"
<< " -w, --window-bits=N Sets the initial window size to 2**N.\n"
<< " --cert=CERT Use the specified client certificate file.\n"
<< " -t, --timeout=<N> Timeout each request after <N> seconds.\n"
<< " -w, --window-bits=<N> Sets the initial window size to 2**<N>.\n"
<< " --cert=<CERT> Use the specified client certificate file.\n"
<< " The file must be in PEM format.\n"
<< " --key=KEY Use the client private key file. The file\n"
<< " --key=<KEY> Use the client private key file. The file\n"
<< " must be in PEM format.\n"
<< std::endl;
}