From: Frederic Lecaille Date: Thu, 12 Dec 2024 11:30:18 +0000 (+0100) Subject: MINOR: quic: reduce the private data size of QUIC cc algos X-Git-Tag: v3.2-dev2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeaeb412dc978bdc9663061d9d2542dc1f7310cb;p=thirdparty%2Fhaproxy.git MINOR: quic: reduce the private data size of QUIC cc algos After these commits: BUG/MINOR: quic: remove max_bw filter from delivery rate sampling BUG/MINOR: quic: fix BBB max bandwidth oscillation issue where some members were removed from bbr struct, the private data size of QUIC cc algorithms may be reduced from 160 to 144 uint32_t. Should be easily backported to 3.1 alonside the commits mentioned above. --- diff --git a/include/haproxy/quic_cc-t.h b/include/haproxy/quic_cc-t.h index a0dee39184..670c4f5e99 100644 --- a/include/haproxy/quic_cc-t.h +++ b/include/haproxy/quic_cc-t.h @@ -91,7 +91,7 @@ struct quic_cc { /* is there only for debugging purpose. */ struct quic_conn *qc; struct quic_cc_algo *algo; - uint32_t priv[160]; + uint32_t priv[144]; }; struct quic_cc_path {