From 8ea78e83617756452729cf2aa43785034d2374a4 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Mon, 10 Jun 2019 21:33:46 +0900 Subject: [PATCH] Add build instruction --- README.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.rst b/README.rst index c5c2eaa7..e011947e 100644 --- a/README.rst +++ b/README.rst @@ -16,6 +16,21 @@ An experimental high level C++ library is also available. We have Python bindings of this library, but we do not have full code coverage yet. +h2load IETF QUIC +---------------- + +In order to build h2load with IETF QUIC, you have to build ngtcp2, +nghttp3 and my patched OpenSSL. +https://github.com/ngtcp2/ngtcp2#build-from-git describes how to build +these three software. + +To run h2load against IETF QUIC server, specify h3-20 ALPN with +``--npn-list`` option like so: + +.. code-block:: text + + $ h2load --npn-list h3-20 https://localhost:4433 + Development Status ------------------