BUG/MINOR: quic_stats: Duplicate "quic_streams_data_blocked_bidi" field name

As reported by broxio in GH #1757, there was a duplication field name
for "quic_streams_data_blocked_bidi", due to a copy and paste without
renaming I guess.

Must be backported to 2.6.
This commit is contained in:
Frédéric Lécaille 2022-06-20 14:35:40 +02:00 committed by Amaury Denoyelle
parent 2aebaa49b1
commit 483499dc22
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ static struct name_desc quic_stats[] = {
.desc = "Total number of received STREAMS_BLOCKED frames" },
[QUIC_ST_STREAMS_DATA_BLOCKED_BIDI] = { .name = "quic_streams_data_blocked_bidi",
.desc = "Total number of received STREAM_DATA_BLOCKED_BIDI frames" },
[QUIC_ST_STREAMS_DATA_BLOCKED_UNI] = { .name = "quic_streams_data_blocked_bidi",
[QUIC_ST_STREAMS_DATA_BLOCKED_UNI] = { .name = "quic_streams_data_blocked_uni",
.desc = "Total number of received STREAM_DATA_BLOCKED_UNI frames" },
};