aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/nghttp2/README.rst
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-09-19 10:23:48 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-09-19 11:02:18 +0300
commit840f2b94194666359166ff9da34ec237aeded9b5 (patch)
tree731503dae9ca45a2edb58a917d74248de8fc02bf /contrib/libs/nghttp2/README.rst
parent5da445c080d4a526cdd2d0e825678cf7593ee03f (diff)
downloadydb-840f2b94194666359166ff9da34ec237aeded9b5.tar.gz
Update contrib/libs/nghttp2 to 1.56.0
Diffstat (limited to 'contrib/libs/nghttp2/README.rst')
-rw-r--r--contrib/libs/nghttp2/README.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/nghttp2/README.rst b/contrib/libs/nghttp2/README.rst
index e551651e02..990af829ca 100644
--- a/contrib/libs/nghttp2/README.rst
+++ b/contrib/libs/nghttp2/README.rst
@@ -127,11 +127,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_1u+quic>`_; or
+ <https://github.com/quictls/openssl/tree/OpenSSL_1_1_1v+quic>`_; or
`BoringSSL <https://boringssl.googlesource.com/boringssl/>`_ (commit
- 80dcb67d4481fb1194b9669917e35580c32dc388)
-* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ 0.17.x
-* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ 0.13.x
+ 6ca49385b168f47a50e7172d82a590b218f55e4d)
+* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ 0.19.x
+* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ 0.15.x
Use ``--enable-http3`` configure option to enable HTTP/3 feature for
h2load and nghttpx.
@@ -146,7 +146,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/v1.2.0>`_. nghttpx
+<https://github.com/libbpf/libbpf/releases/tag/v1.2.2>`_. nghttpx
requires eBPF program for reloading its configuration and hot swapping
its executable.
@@ -343,7 +343,7 @@ Build custom OpenSSL:
.. code-block:: text
- $ git clone --depth 1 -b OpenSSL_1_1_1u+quic https://github.com/quictls/openssl
+ $ git clone --depth 1 -b OpenSSL_1_1_1v+quic https://github.com/quictls/openssl
$ cd openssl
$ ./config --prefix=$PWD/build --openssldir=/etc/ssl
$ make -j$(nproc)
@@ -354,7 +354,7 @@ Build nghttp3:
.. code-block:: text
- $ git clone --depth 1 -b v0.13.0 https://github.com/ngtcp2/nghttp3
+ $ git clone --depth 1 -b v0.15.0 https://github.com/ngtcp2/nghttp3
$ cd nghttp3
$ autoreconf -i
$ ./configure --prefix=$PWD/build --enable-lib-only
@@ -366,7 +366,7 @@ Build ngtcp2:
.. code-block:: text
- $ git clone --depth 1 -b v0.17.0 https://github.com/ngtcp2/ngtcp2
+ $ git clone --depth 1 -b v0.19.0 https://github.com/ngtcp2/ngtcp2
$ cd ngtcp2
$ autoreconf -i
$ ./configure --prefix=$PWD/build --enable-lib-only \
@@ -380,7 +380,7 @@ from source:
.. code-block:: text
- $ git clone --depth 1 -b v1.2.0 https://github.com/libbpf/libbpf
+ $ git clone --depth 1 -b v1.2.2 https://github.com/libbpf/libbpf
$ cd libbpf
$ PREFIX=$PWD/build make -C src install
$ cd ..