Skip to content

Commit

Permalink
fixup! Support dtls 1.3 downgrade mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
fwh-dc committed Jun 28, 2024
1 parent 0bc8fc9 commit db17def
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ssl/statem/statem_srvr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1681,6 +1681,7 @@ MSG_PROCESS_RETURN tls_process_client_hello(SSL_CONNECTION *s, PACKET *pkt)
&maxversion, NULL) == 0)
&& ssl_version_cmp(s, maxversion, DTLS1_3_VERSION) < 0
&& !clienthello->pre_proc_exts[TLSEXT_IDX_supported_versions].present) {
OPENSSL_free(clienthello->pre_proc_exts);
OPENSSL_free(clienthello);
return MSG_PROCESS_FINISHED_READING;
}
Expand Down

0 comments on commit db17def

Please sign in to comment.