Remove TLSv1.3 specific write transition for ClientHello
Since we no longer do version negotiation during the processing of an HRR we do not need the TLSv1.3 specific write transition for ClientHello Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/4701)
This commit is contained in:
parent
fdd9236747
commit
fa9f9350f3
1 changed files with 0 additions and 4 deletions
|
@ -391,10 +391,6 @@ static WRITE_TRAN ossl_statem_client13_write_transition(SSL *s)
|
|||
ERR_R_INTERNAL_ERROR);
|
||||
return WRITE_TRAN_ERROR;
|
||||
|
||||
case TLS_ST_CW_CLNT_HELLO:
|
||||
/* We only hit this in the case of HelloRetryRequest */
|
||||
return WRITE_TRAN_FINISHED;
|
||||
|
||||
case TLS_ST_CR_FINISHED:
|
||||
if (s->early_data_state == SSL_EARLY_DATA_WRITE_RETRY
|
||||
|| s->early_data_state == SSL_EARLY_DATA_FINISHED_WRITING)
|
||||
|
|
Loading…
Reference in a new issue