summaryrefslogtreecommitdiffstats
path: root/doc/man3/SSL_CTX_set_num_tickets.pod
diff options
context:
space:
mode:
authorPW Hu <jlu.hpw@foxmail.com>2021-10-21 15:16:17 +0800
committerTomas Mraz <tomas@openssl.org>2021-10-25 10:49:47 +0200
commitdd9add06e794ba5f54c68d0d98ea90b6ff3140f6 (patch)
tree016c916a4a4f857af8396a7bfecbff007cc92ca5 /doc/man3/SSL_CTX_set_num_tickets.pod
parent1a29fc19cce05ba48d34e46ec773c0ac93f3789a (diff)
doc: Fix some function signature errors
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16874) (cherry picked from commit 7b2bde500dfdad6628b15c5faa641d0f6602110e)
Diffstat (limited to 'doc/man3/SSL_CTX_set_num_tickets.pod')
-rw-r--r--doc/man3/SSL_CTX_set_num_tickets.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/man3/SSL_CTX_set_num_tickets.pod b/doc/man3/SSL_CTX_set_num_tickets.pod
index 95ed719df7..0c7331bc6d 100644
--- a/doc/man3/SSL_CTX_set_num_tickets.pod
+++ b/doc/man3/SSL_CTX_set_num_tickets.pod
@@ -14,9 +14,9 @@ SSL_new_session_ticket
#include <openssl/ssl.h>
int SSL_set_num_tickets(SSL *s, size_t num_tickets);
- size_t SSL_get_num_tickets(SSL *s);
+ size_t SSL_get_num_tickets(const SSL *s);
int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
- size_t SSL_CTX_get_num_tickets(SSL_CTX *ctx);
+ size_t SSL_CTX_get_num_tickets(const SSL_CTX *ctx);
int SSL_new_session_ticket(SSL *s);
=head1 DESCRIPTION