SSL_OP_NO_TICKET
.value = SSL_OP_NO_TICKET,
.value = SSL_OP_NO_TICKET,
if ((s->internal->options & SSL_OP_NO_TICKET) != 0)
if ((SSL_get_options(s) & SSL_OP_NO_TICKET) != 0)
!(SSL_get_options(s) & SSL_OP_NO_TICKET) &&
if ((SSL_get_options(s) & SSL_OP_NO_TICKET) != 0 || CBS_len(cbs) > 0) {
if (SSL_get_options(s) & SSL_OP_NO_TICKET)
SSL_CTX_set_options(ssl_ctx, SSL_OP_NO_TICKET);
SSL_clear_options(ctx->ssl_conn, SSL_OP_NO_TICKET);
SSL_CTX_clear_options(*ssl_ctx, SSL_OP_NO_TICKET);
ssl_ctx_options = SSL_OP_ALL | SSL_OP_NO_SSLv2 | SSL_OP_NO_TICKET;