From: Matt Caswell Date: Wed, 19 Oct 2016 09:53:25 +0000 (+0100) Subject: Remove some unreferenced fields from TestState X-Git-Tag: OpenSSL_1_1_1-pre1~3239 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5b2d35c34407c6f40c8e544f86ab4f50c779518c;p=oweals%2Fopenssl.git Remove some unreferenced fields from TestState They were there for BoringSSL only features which are not relevant to us. Reviewed-by: Richard Levitte --- diff --git a/test/ossl_shim/ossl_shim.cc b/test/ossl_shim/ossl_shim.cc index 50c53ab644..b8c62b0acf 100644 --- a/test/ossl_shim/ossl_shim.cc +++ b/test/ossl_shim/ossl_shim.cc @@ -86,18 +86,11 @@ struct TestState { BIO *async_bio = nullptr; // packeted_bio is the packeted BIO which simulates read timeouts. BIO *packeted_bio = nullptr; - bssl::UniquePtr channel_id; bool cert_ready = false; bssl::UniquePtr session; - bssl::UniquePtr pending_session; - bool early_callback_called = false; bool handshake_done = false; // private_key is the underlying private key used when testing custom keys. bssl::UniquePtr private_key; - std::vector private_key_result; - // private_key_retries is the number of times an asynchronous private key - // operation has been retried. - unsigned private_key_retries = 0; bool got_new_session = false; bssl::UniquePtr new_session; bool ticket_decrypt_done = false;