diff --git a/fizz/client/BUCK b/fizz/client/BUCK index 6be6a8e709..caf20c9fbc 100644 --- a/fizz/client/BUCK +++ b/fizz/client/BUCK @@ -13,7 +13,6 @@ cpp_library( ], exported_deps = [ ":cert_manager", - ":ech_policy", ":psk_cache", "//fizz/compression:cert_decompression_manager", "//fizz/protocol:certificate", diff --git a/fizz/client/FizzClientContext.h b/fizz/client/FizzClientContext.h index 807c3cd462..d661df9001 100644 --- a/fizz/client/FizzClientContext.h +++ b/fizz/client/FizzClientContext.h @@ -9,7 +9,6 @@ #pragma once #include -#include #include #include #include @@ -136,14 +135,6 @@ class FizzClientContext { return certManager_; } - void setECHPolicy(std::shared_ptr echPolicy) { - echPolicy_ = std::move(echPolicy); - } - - ECHPolicy* getECHPolicy() const { - return echPolicy_.get(); - } - /** * Set the Psk Cache to use. */ @@ -369,7 +360,6 @@ class FizzClientContext { SendKeyShare sendKeyShare_{SendKeyShare::WhenNecessary}; - std::shared_ptr echPolicy_; std::shared_ptr pskCache_; std::shared_ptr certManager_{nullptr}; std::shared_ptr certDecompressionManager_;