diff options
author | Matt Caswell <matt@openssl.org> | 2017-02-25 16:59:44 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-03-02 18:44:16 +0100 |
commit | d7f8783ff9e88ad34e010564d721a55a48c6d674 (patch) | |
tree | 42f45aced29f5db352b88a6f27a75567af7cd3ea /include | |
parent | Enable the client to call SSL_read() without stopping the ability to call SSL... (diff) | |
download | openssl-d7f8783ff9e88ad34e010564d721a55a48c6d674.tar.xz openssl-d7f8783ff9e88ad34e010564d721a55a48c6d674.zip |
Enable the server to call SSL_write() without stopping the ability to call SSL_read_early()
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2737)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/ssl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h index dabcc4a6a2..38185975be 100644 --- a/include/openssl/ssl.h +++ b/include/openssl/ssl.h @@ -900,8 +900,8 @@ typedef enum { TLS_ST_CW_KEY_UPDATE, TLS_ST_SR_KEY_UPDATE, TLS_ST_CR_KEY_UPDATE, - TLS_ST_CW_EARLY_DATA, - TLS_ST_CW_PENDING_EARLY_DATA_END + TLS_ST_EARLY_DATA, + TLS_ST_PENDING_EARLY_DATA_END } OSSL_HANDSHAKE_STATE; /* |