Lines Matching refs:ticket
440 // If there is nothing listening for the session ticket, don't both emitting.
443 // Pre-fight to see how much space we need to allocate for the session ticket.
447 // Generate the actual ticket. If this fails, we'll simply carry on without
448 // emitting the ticket.
449 std::shared_ptr<BackingStore> ticket =
451 unsigned char* data = reinterpret_cast<unsigned char*>(ticket->Data());
453 session_->EmitSessionTicket(Store(std::move(ticket), size));
455 // If size == 0, there's no session ticket data to emit. Let's ignore it
480 uv_buf_t buf = sessionTicket.ticket();
481 crypto::SSLSessionPointer ticket = crypto::GetTLSSession(
485 if (!ticket || !SSL_SESSION_get_max_early_data(ticket.get())) return;
488 if (crypto::SetTLSSession(ssl_, ticket)) {