diff options
author | robot-contrib <robot-contrib@yandex-team.ru> | 2022-06-28 21:27:04 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.ru> | 2022-06-28 21:27:04 +0300 |
commit | e10c657371a057bbe8e327938ca361cb7aa9b497 (patch) | |
tree | a461fe86cde0259e83d083ff50ed5ec188efb774 /contrib/libs/nghttp2/README.rst | |
parent | 2907c9b99276f9d2adb27d8e3ee4a31c09ed15ee (diff) | |
download | ydb-e10c657371a057bbe8e327938ca361cb7aa9b497.tar.gz |
Update contrib/libs/nghttp2 to 1.48.0
ref:b582ac8ce36a77f41a7c33b7a5418e0f28488595
Diffstat (limited to 'contrib/libs/nghttp2/README.rst')
-rw-r--r-- | contrib/libs/nghttp2/README.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/nghttp2/README.rst b/contrib/libs/nghttp2/README.rst index 84433bd0bb..002377a7d7 100644 --- a/contrib/libs/nghttp2/README.rst +++ b/contrib/libs/nghttp2/README.rst @@ -151,11 +151,11 @@ To enable the experimental HTTP/3 support for h2load and nghttpx, the following libraries are required: * `OpenSSL with QUIC support - <https://github.com/quictls/openssl/tree/OpenSSL_1_1_1m+quic>`_; or + <https://github.com/quictls/openssl/tree/OpenSSL_1_1_1p+quic>`_; or `BoringSSL <https://boringssl.googlesource.com/boringssl/>`_ (commit - 36a41bf0bf2dd3176f8780e09c03585351f29963) -* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ >= 0.2.0 -* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ >= 0.2.0 + 27ffcc6e19bbafddf1b59ec0bc6df2904de7eb2c) +* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ >= 0.6.0 +* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ >= 0.4.0 Use ``--enable-http3`` configure option to enable HTTP/3 feature for h2load and nghttpx. @@ -170,7 +170,7 @@ Use ``--with-libbpf`` configure option to build eBPF program. libelf-dev is needed to build libbpf. For Ubuntu 20.04, you can build libbpf from `the source code -<https://github.com/libbpf/libbpf/releases/tag/v0.7.0>`_. nghttpx +<https://github.com/libbpf/libbpf/releases/tag/v0.8.0>`_. nghttpx requires eBPF program for reloading its configuration and hot swapping its executable. @@ -355,7 +355,7 @@ Build custom OpenSSL: .. code-block:: text - $ git clone --depth 1 -b OpenSSL_1_1_1m+quic https://github.com/quictls/openssl + $ git clone --depth 1 -b OpenSSL_1_1_1p+quic https://github.com/quictls/openssl $ cd openssl $ ./config --prefix=$PWD/build --openssldir=/etc/ssl $ make -j$(nproc) @@ -366,7 +366,7 @@ Build nghttp3: .. code-block:: text - $ git clone --depth 1 -b v0.2.0 https://github.com/ngtcp2/nghttp3 + $ git clone --depth 1 -b v0.5.0 https://github.com/ngtcp2/nghttp3 $ cd nghttp3 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only @@ -378,7 +378,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v0.2.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.6.0 https://github.com/ngtcp2/ngtcp2 $ cd ngtcp2 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only \ @@ -392,7 +392,7 @@ from source: .. code-block:: text - $ git clone --depth 1 -b v0.7.0 https://github.com/libbpf/libbpf + $ git clone --depth 1 -b v0.8.0 https://github.com/libbpf/libbpf $ cd libbpf $ PREFIX=$PWD/build make -C src install $ cd .. |