]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
ECH: reference the OpenSSL ECH feature branch
authorsftcd <stephen.farrell@cs.tcd.ie>
Mon, 5 May 2025 21:37:49 +0000 (22:37 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 6 May 2025 07:02:24 +0000 (09:02 +0200)
rather than the defo-project fork.

Closes #17251

docs/ECH.md

index 2c29015a8773e1576b6783384e6ce12b5fcb2e75..969bbfa27f54274f74def4fa4f41a316ff29bbf2 100644 (file)
@@ -18,16 +18,17 @@ discussion about a good path forward for ECH support in curl.
 
 ## OpenSSL Build
 
-To build our ECH-enabled OpenSSL fork:
+To build the OpenSSL project's ECH feature branch:
 
 ```bash
     cd $HOME/code
-    git clone https://github.com/defo-project/openssl
+    git clone https://github.com/openssl/openssl
     cd openssl
+    git checkout feature/ech
     ./config --libdir=lib --prefix=$HOME/code/openssl-local-inst
     ...stuff...
     make -j8
-    ...stuff (maybe go for coffee)...
+    ...more stuff...
     make install_sw
     ...a little bit of stuff...
 ```