From 2b9685e75fac1896fd8e00ec29f912772b448988 Mon Sep 17 00:00:00 2001 From: Carmelo Messina Date: Fri, 19 May 2023 14:58:45 +0200 Subject: [PATCH] enable EncryptedClientHelloQuic by default --- build/patches/Enable-ECH-by-default.patch | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/build/patches/Enable-ECH-by-default.patch b/build/patches/Enable-ECH-by-default.patch index 680a1c66..d152bb37 100644 --- a/build/patches/Enable-ECH-by-default.patch +++ b/build/patches/Enable-ECH-by-default.patch @@ -4,13 +4,13 @@ Subject: Enable ECH by default License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html --- - net/base/features.cc | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) + net/base/features.cc | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/base/features.cc b/net/base/features.cc --- a/net/base/features.cc +++ b/net/base/features.cc -@@ -83,8 +83,8 @@ BASE_FEATURE(kEnableTLS13EarlyData, +@@ -83,12 +83,12 @@ BASE_FEATURE(kEnableTLS13EarlyData, base::FEATURE_DISABLED_BY_DEFAULT); BASE_FEATURE(kEncryptedClientHello, @@ -20,6 +20,12 @@ diff --git a/net/base/features.cc b/net/base/features.cc + base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite BASE_FEATURE(kEncryptedClientHelloQuic, - "EncryptedClientHelloQuic", +- "EncryptedClientHelloQuic", +- base::FEATURE_DISABLED_BY_DEFAULT); ++ "EncryptedClientHelloQuic", // enabled ++ base::FEATURE_ENABLED_BY_DEFAULT); // in Bromite + + BASE_FEATURE(kNetworkQualityEstimator, + "NetworkQualityEstimator", -- 2.25.1