mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-13 09:59:40 +00:00
Change SSL parameter SSL_session_reused const
This function only returns a status and does not modify the parameter. Since similar function are already taking const parameters, also change this function to have a const parameter. Fixes #8934 CLA: trivial Signed-off-by: Arne Schwabe <arne@rfc2549.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8945)
This commit is contained in:
parent
9830e7ea42
commit
c04b66b18d
@ -8,7 +8,7 @@ SSL_session_reused - query whether a reused session was negotiated during handsh
|
|||||||
|
|
||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
|
|
||||||
int SSL_session_reused(SSL *ssl);
|
int SSL_session_reused(const SSL *ssl);
|
||||||
|
|
||||||
=head1 DESCRIPTION
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
@ -2152,7 +2152,7 @@ size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx);
|
|||||||
# define SSL_cache_hit(s) SSL_session_reused(s)
|
# define SSL_cache_hit(s) SSL_session_reused(s)
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
__owur int SSL_session_reused(SSL *s);
|
__owur int SSL_session_reused(const SSL *s);
|
||||||
__owur int SSL_is_server(const SSL *s);
|
__owur int SSL_is_server(const SSL *s);
|
||||||
|
|
||||||
__owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
|
__owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
|
||||||
|
@ -4606,7 +4606,7 @@ int ssl_handshake_hash(SSL *s, unsigned char *out, size_t outlen,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SSL_session_reused(SSL *s)
|
int SSL_session_reused(const SSL *s)
|
||||||
{
|
{
|
||||||
return s->hit;
|
return s->hit;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user