From 57e6e9eef8f7851fa0e886ccc34a3b37eb218d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 23 Sep 2021 18:10:56 +0200 Subject: [PATCH] MINOR: quic: Distinguish packet and SSL read enc. level in traces This is only to distinguish the encryption level of packet traces from the TLS stack current read encryption level. --- src/xprt_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 802e5702b..d7cef7631 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -371,7 +371,7 @@ static void quic_trace(enum trace_level level, uint64_t mask, const struct trace (unsigned long long)cf->len); if (ssl) { enum ssl_encryption_level_t level = SSL_quic_read_level(ssl); - chunk_appendf(&trace_buf, " el=%c", + chunk_appendf(&trace_buf, " rel=%c", quic_enc_level_char(ssl_to_quic_enc_level(level))); } }