From: Amaury Denoyelle Date: Fri, 29 Aug 2025 07:29:04 +0000 (+0200) Subject: BUG/BUILD: stats: fix build due to missing stat enum definition X-Git-Tag: v3.3-dev8~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1517869145a20ac4432d86ea858d14533af77508;p=thirdparty%2Fhaproxy.git BUG/BUILD: stats: fix build due to missing stat enum definition Recently, new server counter for private idle connections have been added to statistics output. However, the patch was missing ST_I_PX_PRIV_IDLE_CUR enum definition. No need to backport. --- diff --git a/include/haproxy/stats-t.h b/include/haproxy/stats-t.h index f05ec08eb..937f77138 100644 --- a/include/haproxy/stats-t.h +++ b/include/haproxy/stats-t.h @@ -488,6 +488,7 @@ enum stat_idx_px { ST_I_PX_H2REQ, ST_I_PX_H3REQ, ST_I_PX_PROTO, + ST_I_PX_PRIV_IDLE_CUR, /* must always be the last one */ ST_I_PX_MAX