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-05-18 00:49:49 +0300
committerDavid Benjamin <davidben@google.com>2016-05-18 00:50:45 +0300
commit7f6706ce64bff23d29cdf8e1fb48e8c56f464050 (patch)
tree3bd8ca7972614d9c52901b8aac0254de19ee859b /include/openssl/ssl.h
parent47f5a1feca50e3e524ff91528e629f8d16e19309 (diff)
MSVC doesn't like C bitfields.
Change-Id: I88a415e3dd7ac9ea2fa83ca3e4d835efefa7fcc6 Reviewed-on: https://boringssl-review.googlesource.com/7970 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'include/openssl/ssl.h')
-rw-r--r--include/openssl/ssl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index d3bf83ab..960bc141 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -4091,10 +4091,10 @@ typedef struct ssl3_state_st {
/* recv_shutdown is the shutdown state for the receive half of the
* connection. */
- enum ssl_shutdown_t recv_shutdown : 2;
+ enum ssl_shutdown_t recv_shutdown;
/* recv_shutdown is the shutdown state for the send half of the connection. */
- enum ssl_shutdown_t send_shutdown : 2;
+ enum ssl_shutdown_t send_shutdown;
int alert_dispatch;
uint8_t send_alert[2];