mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-09 16:47:18 +02:00
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.
This commit is contained in:
parent
9813de0537
commit
eeaeb412dc
@ -91,7 +91,7 @@ struct quic_cc {
|
|||||||
/* <conn> is there only for debugging purpose. */
|
/* <conn> is there only for debugging purpose. */
|
||||||
struct quic_conn *qc;
|
struct quic_conn *qc;
|
||||||
struct quic_cc_algo *algo;
|
struct quic_cc_algo *algo;
|
||||||
uint32_t priv[160];
|
uint32_t priv[144];
|
||||||
};
|
};
|
||||||
|
|
||||||
struct quic_cc_path {
|
struct quic_cc_path {
|
||||||
|
Loading…
Reference in New Issue
Block a user