From a1a198a90da4e95e3e2fa9310903faf73d32632a Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com> Date: Fri, 21 Dec 2018 00:56:31 +0900 Subject: [PATCH] Use openssl quic-draft-17 branch --- README.rst | 2 +- ci/build_openssl.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 6364de61..60319263 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ Build from git .. code-block:: text - $ git clone --depth 1 -b quic-draft-15 https://github.com/tatsuhiro-t/openssl + $ git clone --depth 1 -b quic-draft-17 https://github.com/tatsuhiro-t/openssl $ cd openssl $ # For Linux $ ./config enable-tls1_3 --prefix=$PWD/build diff --git a/ci/build_openssl.sh b/ci/build_openssl.sh index 47bfa8d5..025502a2 100755 --- a/ci/build_openssl.sh +++ b/ci/build_openssl.sh @@ -2,7 +2,7 @@ #build last openssl master (for Travis) cd .. -git clone --depth 1 -b quic-draft-15 https://github.com/tatsuhiro-t/openssl +git clone --depth 1 -b quic-draft-17 https://github.com/tatsuhiro-t/openssl cd openssl ./config enable-tls1_3 --prefix=$PWD/build make -j$(nproc) -- GitLab