Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@google.com>2016-07-27 21:20:08 +0300
committerAdam Langley <agl@google.com>2016-07-29 01:52:47 +0300
commit9fd9580137eec23ecb76d91cc58317308bfc8eb2 (patch)
treebac8cff4d5b0c8c78744ab46e3b17eed34b5b53a /include/openssl/ssl.h
parenta9509489622fb532ad74efa5672cf03212a3fb5c (diff)
Remove ssl->s3->message_complete in favor of ssl->init_msg.
This was only used so we knew when we had a current message to discard and when we didn't. With init_msg being tracked better, we can use that instead. As part of this, switch the V2ClientHello hack to not using reuse_message. Otherwise we have to fill in init_msg and friends in two places. The next change will require that we have a better handle on the "is there a current message" boolean. BUG=83 Change-Id: I917efacbad10806d492bbe51eda74c0779084d60 Reviewed-on: https://boringssl-review.googlesource.com/8987 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/ssl.h')
-rw-r--r--include/openssl/ssl.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index 22042f93..7875fe19 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -4297,10 +4297,6 @@ typedef struct ssl3_state_st {
int message_type;
- /* message_complete is one if the current message is complete and zero
- * otherwise. */
- unsigned message_complete:1;
-
/* used to hold the new cipher we are going to use */
const SSL_CIPHER *new_cipher;