Searched refs:num_tickets (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/crypto/openssl/ssl/
H A Dssl_conf.c585 int num_tickets = atoi(value); local
587 if (num_tickets >= 0) {
589 rv = SSL_CTX_set_num_tickets(cctx->ctx, num_tickets);
591 rv = SSL_set_num_tickets(cctx->ssl, num_tickets);
684 SSL_CONF_CMD_STRING(NumTickets, "num_tickets", SSL_CONF_FLAG_SERVER),
H A Dssl_lib.c715 s->num_tickets = ctx->num_tickets;
3238 ret->num_tickets = 2;
4553 int SSL_set_num_tickets(SSL *s, size_t num_tickets) argument
4555 s->num_tickets = num_tickets;
4562 return s->num_tickets;
4565 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets) argument
4567 ctx->num_tickets = num_tickets;
[all...]
H A Dssl_local.h1060 size_t num_tickets; member in struct:ssl_ctx_st
1468 size_t num_tickets; member in struct:ssl_st
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dssl.h2143 int SSL_set_num_tickets(SSL *s, size_t num_tickets);
2145 int SSL_CTX_set_num_tickets(SSL_CTX *ctx, size_t num_tickets);
/freebsd-13-stable/crypto/openssl/ssl/statem/
H A Dstatem_srvr.c513 if (s->num_tickets > s->sent_tickets)
529 if (s->hit || s->num_tickets <= s->sent_tickets) {

Completed in 197 milliseconds