Symbol: SSL_OP_NO_TICKET
crypto/openssl/ssl/ssl_conf.c
378
SSL_FLAG_TBL_INV("SessionTicket", SSL_OP_NO_TICKET),
crypto/openssl/ssl/ssl_conf.c
856
{ SSL_OP_NO_TICKET, 0 }, /* no_ticket */
crypto/openssl/ssl/ssl_lib.c
4157
ret->options |= SSL_OP_NO_TICKET;
crypto/openssl/ssl/ssl_lib.c
4750
|| (s->options & SSL_OP_NO_TICKET) != 0))
crypto/openssl/ssl/ssl_local.h
3106
(OSSL_LEGACY_SSL_OPTIONS | OSSL_TLS1_2_OPTIONS | SSL_OP_CIPHER_SERVER_PREFERENCE | SSL_OP_DISABLE_TLSEXT_CA_NAMES | SSL_OP_NO_TX_CERTIFICATE_COMPRESSION | SSL_OP_NO_RX_CERTIFICATE_COMPRESSION | SSL_OP_PRIORITIZE_CHACHA | SSL_OP_NO_QUERY_MTU | SSL_OP_NO_TICKET | SSL_OP_NO_ANTI_REPLAY)
crypto/openssl/ssl/statem/extensions.c
941
int was_ticket = (SSL_get_options(ssl) & SSL_OP_NO_TICKET) == 0;
crypto/openssl/ssl/statem/extensions.c
992
&& was_ticket && (SSL_get_options(ssl) & SSL_OP_NO_TICKET) != 0) {
crypto/openssl/ssl/statem/extensions_srvr.c
1432
if ((s->options & SSL_OP_NO_TICKET) != 0
crypto/openssl/ssl/statem/statem_srvr.c
4304
&& ((s->options & SSL_OP_NO_TICKET) != 0
crypto/openssl/ssl/t1_lib.c
2947
if ((s->options & SSL_OP_NO_TICKET))
crypto/openssl/test/rpktest.c
405
SSL_set_options(serverssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
406
SSL_set_options(clientssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
454
SSL_set_options(serverssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
455
SSL_set_options(clientssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
589
SSL_set_options(clientssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
590
SSL_set_options(serverssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
619
SSL_set_options(serverssl, SSL_OP_NO_TICKET);
crypto/openssl/test/rpktest.c
620
SSL_set_options(clientssl, SSL_OP_NO_TICKET);
crypto/openssl/test/ssl_old_test.c
1405
SSL_CTX_set_options(c_ctx, SSL_OP_NO_TICKET);
crypto/openssl/test/ssl_old_test.c
1406
SSL_CTX_set_options(s_ctx, SSL_OP_NO_TICKET);
crypto/openssl/test/sslapitest.c
12324
SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET);
crypto/openssl/test/sslapitest.c
2265
SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET);
crypto/openssl/test/sslapitest.c
2491
SSL_CTX_set_options(*sctx, SSL_OP_NO_TICKET);
crypto/openssl/test/sslapitest.c
879
|| !TEST_true(SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET))
crypto/openssl/test/sslapitest.c
9756
|| !TEST_true(SSL_CTX_set_options(sctx, SSL_OP_NO_TICKET)))
lib/libfetch/common.c
1049
ssl_ctx_options = SSL_OP_ALL | SSL_OP_NO_SSLv3 | SSL_OP_NO_TICKET;