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)
#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"