summaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-10-05 10:18:06 +0100
committerMatt Caswell <matt@openssl.org>2015-10-30 08:39:46 +0000
commit35bf6e05371de3aebd83dc630125a108ec4a5e70 (patch)
treec71f645eea7babdf30f1eecdf30a2e286ac02769 /CHANGES
parenta455d0f6fff7bdac2b991715e7bf5b000e2274af (diff)
Change HANDSHAKE_STATE to OSSL_HANDSHAKE_STATE
Rename the enum HANDSHAKE_STATE to OSSL_HANDSHAKE_STATE to ensure there are no namespace clashes, and convert it into a typedef. Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES8
1 files changed, 4 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 2be8ecccbe..34ad35595c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -8,11 +8,11 @@
refactored in order to remove much duplication of code and solve issues
with the old code (see ssl/statem/README for further details). This change
does have some associated API changes. Notably SSL_get_state/SSL_state now
- returns an "enum HANDSHAKE_STATE" instead of an int. The previous handshake
+ returns an "OSSL_HANDSHAKE_STATE" instead of an int. The previous handshake
states defined in ssl.h and ssl3.h have been redefined to be the nearest
- equivalent HANDSHAKE_STATE value. Not all states have an equivalent value,
- (e.g. SSL_ST_CW_FLUSH). New application code should not use the old
- handshake state values, but should instead use HANDSHAKE_STATE.
+ equivalent OSS_HANDSHAKE_STATE value. Not all states have an equivalent
+ value, (e.g. SSL_ST_CW_FLUSH). New application code should not use the old
+ handshake state values, but should instead use OSSL_HANDSHAKE_STATE.
[Matt Caswell]
*) The demo files in crypto/threads were moved to demo/threads.