We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fee064 + f03f10b commit d891e9cCopy full SHA for d891e9c
src/tlshd/quic.c
@@ -697,7 +697,10 @@ static void tlshd_quic_recv_session_ticket(struct tlshd_quic_conn *conn)
697
return;
698
699
/* process new session ticket msg and get the generated session data */
700
- if (quic_handshake_crypto_data(conn, QUIC_CRYPTO_APP, conn->ticket, len)) {
+ ret = gnutls_handshake_write(session, GNUTLS_ENCRYPTION_LEVEL_APPLICATION,
701
+ conn->ticket, len);
702
+ if (ret && gnutls_error_is_fatal(ret)) {
703
+ tlshd_log_gnutls_error(ret);
704
conn->errcode = EACCES;
705
706
}
0 commit comments