summaryrefslogtreecommitdiffstats
path: root/ssl/statem/statem.h
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:44:41 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commita71a4966a31b31df72db42c130544462fd6ad624 (patch)
tree23d89afef778252c4c2034beacb3640a4efa25a3 /ssl/statem/statem.h
parentc874def60a756df57d1069f48852632a0690f856 (diff)
Move |no_cert_verify| into state machine
The |no_cert_verify| should be in the state machine structure not in SSL Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'ssl/statem/statem.h')
-rw-r--r--ssl/statem/statem.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ssl/statem/statem.h b/ssl/statem/statem.h
index fcc6163863..f65e09f0c4 100644
--- a/ssl/statem/statem.h
+++ b/ssl/statem/statem.h
@@ -135,6 +135,10 @@ struct statem_st {
OSSL_HANDSHAKE_STATE hand_state;
int in_init;
int read_state_first_init;
+
+ /* Should we skip the CertificateVerify message? */
+ unsigned int no_cert_verify;
+
int use_timer;
#ifndef OPENSSL_NO_SCTP
int in_sctp_read_sock;