Home
last modified time | relevance | path

Searched refs:num_tickets (Results 1 – 8 of 8) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set_num_tickets.pod16 int SSL_set_num_tickets(SSL *s, size_t num_tickets);
18 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
27 the B<num_tickets> argument. Typically these functions should be called before
32 SSL_set_num_tickets() or SSL_CTX_set_num_tickets(). If B<num_tickets> is set to
/freebsd/crypto/openssl/ssl/
H A Dssl_conf.c725 int num_tickets = atoi(value); in cmd_NumTickets() local
727 if (num_tickets >= 0) { in cmd_NumTickets()
729 rv = SSL_CTX_set_num_tickets(cctx->ctx, num_tickets); in cmd_NumTickets()
731 rv = SSL_set_num_tickets(cctx->ssl, num_tickets); in cmd_NumTickets()
H A Dssl_lib.c766 s->num_tickets = ctx->num_tickets; in ossl_ssl_connection_new_int()
4246 ret->num_tickets = 2; in SSL_CTX_new_ex()
6027 int SSL_set_num_tickets(SSL *s, size_t num_tickets) in SSL_set_num_tickets() argument
6034 sc->num_tickets = num_tickets; in SSL_set_num_tickets()
6046 return sc->num_tickets; in SSL_get_num_tickets()
6049 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets) in SSL_CTX_set_num_tickets() argument
6051 ctx->num_tickets = num_tickets; in SSL_CTX_set_num_tickets()
6058 return ctx->num_tickets; in SSL_CTX_get_num_tickets()
H A Dssl_local.h1144 size_t num_tickets; member
1832 size_t num_tickets; member
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-s_server.pod.in124 [B<-num_tickets>]
606 =item B<-num_tickets>
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h2347 int SSL_set_num_tickets(SSL *s, size_t num_tickets);
2349 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
H A Dssl.h.in2300 int SSL_set_num_tickets(SSL *s, size_t num_tickets);
2302 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
/freebsd/crypto/openssl/ssl/statem/
H A Dstatem_srvr.c577 if (s->num_tickets > s->sent_tickets) in ossl_statem_server13_write_transition()
595 } else if (s->hit || s->num_tickets <= s->sent_tickets) { in ossl_statem_server13_write_transition()