From b360611ad6b840e7299d2e430b0cf0b6d05ee328 Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Fri, 14 Feb 2025 14:21:31 -0500 Subject: [PATCH] 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) --- ssl/quic/quic_tls.c | 1 + 1 file changed, 1 insertion(+) 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" -- 2.47.2