summaryrefslogtreecommitdiffstats
path: root/test/ossl_shim/ossl_shim.cc
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-10-19 10:53:25 +0100
committerMatt Caswell <matt@openssl.org>2016-11-04 10:38:54 +0000
commit5b2d35c34407c6f40c8e544f86ab4f50c779518c (patch)
tree1107c370088b4bf974e344401c3aeaa8431634f5 /test/ossl_shim/ossl_shim.cc
parent2fd0dfd9f69468b8276b0cd3a292a9b1aa24fef9 (diff)
Remove some unreferenced fields from TestState
They were there for BoringSSL only features which are not relevant to us. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/ossl_shim/ossl_shim.cc')
-rw-r--r--test/ossl_shim/ossl_shim.cc7
1 files changed, 0 insertions, 7 deletions
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<EVP_PKEY> channel_id;
bool cert_ready = false;
bssl::UniquePtr<SSL_SESSION> session;
- bssl::UniquePtr<SSL_SESSION> 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<EVP_PKEY> private_key;
- std::vector<uint8_t> 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<SSL_SESSION> new_session;
bool ticket_decrypt_done = false;