BUG/MINOR: quic/h3: display QUIC/H3 backend module on HTML stats

QUIC is now implemented on the backend side. Complete definitions for
QUIC/H3 stats module to add STATS_PX_CAP_BE capability.

This change is necessary to display QUIC/H3 counters on backend lines
for HTML stats page.

This should be backported up to 3.3.
This commit is contained in:
Amaury Denoyelle 2026-02-20 11:18:10 +01:00
parent 5f26cf162c
commit 0f95e73032
2 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ struct stats_module h3_stats_module = {
.stats_count = H3_STATS_COUNT,
.counters = &h3_counters,
.counters_size = sizeof(h3_counters),
.domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE),
.domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
.clearable = 1,
};

View File

@ -247,7 +247,7 @@ struct stats_module quic_stats_module = {
.stats_count = QUIC_STATS_COUNT,
.counters = &quic_counters,
.counters_size = sizeof(quic_counters),
.domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE),
.domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_BE),
.clearable = 1,
};