Remove the old state defines
[openssl.git] / CHANGES
diff --git a/CHANGES b/CHANGES
index 34ad35595c0594dbfb89b7c34ba0856f50907083..a8629d87bbd84298d1ef1e9766e9a92f718ff218 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -7,12 +7,11 @@
   *) State machine rewrite. The state machine code has been significantly
      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 "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 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.
+     does have some associated API changes. Notably the SSL_state() function
+     has been removed and replaced by SSL_get_state which now returns an
+     "OSSL_HANDSHAKE_STATE" instead of an int. SSL_set_state() has been removed
+     altogether. The previous handshake states defined in ssl.h and ssl3.h have
+     also been removed.
      [Matt Caswell]
 
   *) The demo files in crypto/threads were moved to demo/threads.