enable EncryptedClientHelloQuic by default

This commit is contained in:
Carmelo Messina
2023-05-19 14:58:45 +02:00
parent f75f243f20
commit 2b9685e75f
+10 -4
View File
@@ -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