From 846b0c076fbf60ea60e1cf070c7f76d360df68cf Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 7 May 2022 10:54:51 +0900 Subject: [PATCH] Bump quictls --- .github/workflows/build.yml | 4 ++-- README.rst | 4 ++-- docker/Dockerfile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e8633922..0569ad14 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,7 +97,7 @@ jobs: - name: Build quictls/openssl v1.1.1 if: matrix.http3 == 'http3' && matrix.openssl == 'openssl1' run: | - git clone --depth 1 -b OpenSSL_1_1_1n+quic https://github.com/quictls/openssl + git clone --depth 1 -b OpenSSL_1_1_1o+quic https://github.com/quictls/openssl cd openssl ./config enable-tls1_3 --prefix=$PWD/build make -j$(nproc) @@ -108,7 +108,7 @@ jobs: unset CPPFLAGS unset LDFLAGS - git clone --depth 1 -b openssl-3.0.2+quic https://github.com/quictls/openssl + git clone --depth 1 -b openssl-3.0.3+quic https://github.com/quictls/openssl cd openssl ./config enable-tls1_3 --prefix=$PWD/build --libdir=$PWD/build/lib make -j$(nproc) diff --git a/README.rst b/README.rst index 9a123097..70bbf220 100644 --- a/README.rst +++ b/README.rst @@ -151,7 +151,7 @@ To enable the experimental HTTP/3 support for h2load and nghttpx, the following libraries are required: * `OpenSSL with QUIC support - `_; or + `_; or `BoringSSL `_ (commit 36a41bf0bf2dd3176f8780e09c03585351f29963) * `ngtcp2 `_ >= 0.4.0 @@ -355,7 +355,7 @@ Build custom OpenSSL: .. code-block:: text - $ git clone --depth 1 -b OpenSSL_1_1_1n+quic https://github.com/quictls/openssl + $ git clone --depth 1 -b OpenSSL_1_1_1o+quic https://github.com/quictls/openssl $ cd openssl $ ./config --prefix=$PWD/build --openssldir=/etc/ssl $ make -j$(nproc) diff --git a/docker/Dockerfile b/docker/Dockerfile index 8e82a5db..abe659f4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && \ zlib1g-dev libev-dev libjemalloc-dev ruby-dev libc-ares-dev bison \ libelf-dev -RUN git clone --depth 1 -b OpenSSL_1_1_1n+quic https://github.com/quictls/openssl && \ +RUN git clone --depth 1 -b OpenSSL_1_1_1o+quic https://github.com/quictls/openssl && \ cd openssl && \ ./config --openssldir=/etc/ssl && \ make -j$(nproc) && \