Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/tlshd/quic.c
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,10 @@ static void tlshd_quic_recv_session_ticket(struct tlshd_quic_conn *conn)
return;

/* process new session ticket msg and get the generated session data */
if (quic_handshake_crypto_data(conn, QUIC_CRYPTO_APP, conn->ticket, len)) {
ret = gnutls_handshake_write(session, GNUTLS_ENCRYPTION_LEVEL_APPLICATION,
conn->ticket, len);
if (ret && gnutls_error_is_fatal(ret)) {
tlshd_log_gnutls_error(ret);
conn->errcode = EACCES;
return;
}
Expand Down