Quicheのhttp3-clientのオプションたち
#Quiche #HTTP/3 #ヘルプ
Cloudflareが作っているHTTP/3のCLIのクライアントのヘルプ。
code:ヘルプ
$ ./http3-client -h
Usage:
http3-client options URL
http3-client -h | --help
Options:
--method METHOD Use the given HTTP request method default: GET.
--body FILE Send the given file as request body.
--max-data BYTES Connection-wide flow control limit default: 10000000.
--max-stream-data BYTES Per-stream flow control limit default: 1000000.
--wire-version VERSION The version number to send to the server default: babababa.
--no-verify Don't verify server's certificate.
--no-grease Don't send GREASE.
-H --header HEADER ... Add a request header.
-n --requests REQUESTS Send the given number of identical requests default: 1.
-h --help Show this screen.
./http3-client --no-verify https://localhostで証明書を無視できる。curlの-k / --insecureに相当するはず。
QuicheのGitのハッシュはabf3f50a589bd827f3301eed727d875de6022e53
http3-clientのビルド方法は以下の公式のドキュメントにある。
http3-client - HTTP/3 Docs
./target/debug/examples/http3-clientにバイナリが生成される。