Skip to content
Snippets Groups Projects
Commit d6deb3fd authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa
Browse files

Use OpenSSL_1_1_1d-quic-draft-24 for performance reason

parent 658f5905
Branches
No related merge requests found
...@@ -52,14 +52,14 @@ The client and server under examples directory require patched OpenSSL ...@@ -52,14 +52,14 @@ The client and server under examples directory require patched OpenSSL
as crypto backend: as crypto backend:
* Patched OpenSSL * Patched OpenSSL
(https://github.com/tatsuhiro-t/openssl/tree/openssl-quic-draft-24) (https://github.com/tatsuhiro-t/openssl/tree/OpenSSL_1_1_1d-quic-draft-24)
Build from git Build from git
-------------- --------------
.. code-block:: text .. code-block:: text
$ git clone --depth 1 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl $ git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 https://github.com/tatsuhiro-t/openssl
$ cd openssl $ cd openssl
$ # For Linux $ # For Linux
$ ./config enable-tls1_3 --prefix=$PWD/build $ ./config enable-tls1_3 --prefix=$PWD/build
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#build last openssl master (for Travis) #build last openssl master (for Travis)
cd .. cd ..
git clone --depth 1 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 https://github.com/tatsuhiro-t/openssl
cd openssl cd openssl
./config enable-tls1_3 --prefix=$PWD/build ./config enable-tls1_3 --prefix=$PWD/build
make -j$(nproc) make -j$(nproc)
......
...@@ -4,7 +4,7 @@ RUN /usr/local/bin/clean-install \ ...@@ -4,7 +4,7 @@ RUN /usr/local/bin/clean-install \
git g++ make binutils autoconf automake autotools-dev libtool \ git g++ make binutils autoconf automake autotools-dev libtool \
pkg-config libev-dev libjemalloc-dev \ pkg-config libev-dev libjemalloc-dev \
libev4 libjemalloc1 ca-certificates mime-support && \ libev4 libjemalloc1 ca-certificates mime-support && \
git clone --depth 1 -b openssl-quic-draft-24 https://github.com/tatsuhiro-t/openssl && \ git clone --depth 1 -b OpenSSL_1_1_1d-quic-draft-24 https://github.com/tatsuhiro-t/openssl && \
cd openssl && ./config enable-tls1_3 --openssldir=/etc/ssl && make -j$(nproc) && make install_sw && cd .. && rm -rf openssl && \ cd openssl && ./config enable-tls1_3 --openssldir=/etc/ssl && make -j$(nproc) && make install_sw && cd .. && rm -rf openssl && \
git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \ git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \
cd nghttp3 && autoreconf -i && \ cd nghttp3 && autoreconf -i && \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment