Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit 277aa4f

Browse files
committed
QUIC: Fall-through for 0RTT
1 parent b78dac2 commit 277aa4f

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

ssl/statem/statem_srvr.c

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,9 @@ static int ossl_statem_server13_read_transition(SSL *s, int mt)
7474
return 1;
7575
}
7676
break;
77-
} else if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED) {
77+
} else if (s->ext.early_data == SSL_EARLY_DATA_ACCEPTED
78+
&& !SSL_IS_QUIC(s)) {
7879
if (mt == SSL3_MT_END_OF_EARLY_DATA) {
79-
#ifndef OPENSSL_NO_QUIC
80-
if (s->quic_method != NULL)
81-
return 0;
82-
#endif
8380
st->hand_state = TLS_ST_SR_END_OF_EARLY_DATA;
8481
return 1;
8582
}

0 commit comments

Comments
 (0)