From: Frédéric Lécaille Date: Thu, 23 Sep 2021 16:10:56 +0000 (+0200) Subject: MINOR: quic: Distinguish packet and SSL read enc. level in traces X-Git-Tag: v2.5-dev9~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57e6e9eef8f7851fa0e886ccc34a3b37eb218d1e;p=thirdparty%2Fhaproxy.git 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. --- diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 802e5702b4..d7cef7631c 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))); } }