diff options
author | Alexander Kanavin <alex@linutronix.de> | 2024-05-17 13:49:21 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-05-30 18:31:22 +0200 |
commit | 86c9bb137836036f2c95a2b2ee7abfd564b49708 (patch) | |
tree | 1cbcddf7947b6cd036cd6cb87563c3e6cdfde9c1 /util/libssl.num | |
parent | include/openssl/macros.h: define deprecation macros for 3.4 (diff) | |
download | openssl-86c9bb137836036f2c95a2b2ee7abfd564b49708.tar.xz openssl-86c9bb137836036f2c95a2b2ee7abfd564b49708.zip |
ssl_sess.c: deprecate SSL_CTX_flush_sessions in favour of _ex() replacement
The original function is using long for time and is therefore
not Y2038-safe.
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24307)
Diffstat (limited to 'util/libssl.num')
-rw-r--r-- | util/libssl.num | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/libssl.num b/util/libssl.num index da18be5a62..d7c7ff09b7 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -186,7 +186,7 @@ TLSv1_2_client_method 186 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_1 SSL_add_client_CA 187 3_0_0 EXIST::FUNCTION: SSL_CTX_get0_security_ex_data 188 3_0_0 EXIST::FUNCTION: SSL_get_ex_data 189 3_0_0 EXIST::FUNCTION: -SSL_CTX_flush_sessions 190 3_0_0 EXIST::FUNCTION: +SSL_CTX_flush_sessions 190 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_4 SSL_use_PrivateKey 191 3_0_0 EXIST::FUNCTION: DTLSv1_client_method 192 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_1_1_0,DTLS1_METHOD SSL_CTX_dane_mtype_set 193 3_0_0 EXIST::FUNCTION: @@ -583,3 +583,4 @@ SSL_set_value_uint 583 3_3_0 EXIST::FUNCTION: SSL_poll 584 3_3_0 EXIST::FUNCTION: SSL_SESSION_get_time_ex 585 3_3_0 EXIST::FUNCTION: SSL_SESSION_set_time_ex 586 3_3_0 EXIST::FUNCTION: +SSL_CTX_flush_sessions_ex 587 3_4_0 EXIST::FUNCTION: |