From: Neil Horman Date: Fri, 14 Feb 2025 19:21:31 +0000 (-0500) Subject: Readd the inclusion of quic_record_util.h to quic_tls.c X-Git-Tag: openssl-3.5.0-alpha1~206 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b360611ad6b840e7299d2e430b0cf0b6d05ee328;p=thirdparty%2Fopenssl.git Readd the inclusion of quic_record_util.h to quic_tls.c Some refactoring on master removed the inclusion of quic_local.h from ssl_local.h, which quic_tls.c needed on the server branch to pull in the QRL_SUITE_AES128GCM and simmilar definitions. Fix it by specifcially adding quic_record_util.h into quic_tls.c, as we only need a few defines from that header. Reviewed-by: Tomas Mraz Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/26762) --- diff --git a/ssl/quic/quic_tls.c b/ssl/quic/quic_tls.c index 821fcc50b70..03acbd10778 100644 --- a/ssl/quic/quic_tls.c +++ b/ssl/quic/quic_tls.c @@ -10,6 +10,7 @@ #include "internal/recordmethod.h" #include "internal/quic_tls.h" #include "../ssl_local.h" +#include "internal/quic_record_util.h" #include "internal/quic_error.h" #include "internal/quic_types.h" #include "internal/ssl_unwrap.h"