]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Readd the inclusion of quic_record_util.h to quic_tls.c
authorNeil Horman <nhorman@openssl.org>
Fri, 14 Feb 2025 19:21:31 +0000 (14:21 -0500)
committerNeil Horman <nhorman@openssl.org>
Mon, 17 Feb 2025 16:27:34 +0000 (11:27 -0500)
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 <tomas@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26762)

ssl/quic/quic_tls.c

index 821fcc50b7055df6c689dbeaf41694584d62958c..03acbd107784754fa683a458492654bdb13bb103 100644 (file)
@@ -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"