mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 15:47:01 +02:00
CLEANUP: quic: remove a wrong comment about ->app_limited (drs)
->app_limited quic_drs struct member is not a boolean. This is the index of the last transmitted packet marked as application-limited, or 0 if the connection is not currently application-limited (see C.app_limited definition in BBR v3 draft).
This commit is contained in:
parent
eeaeb412dc
commit
e1d25cdbdd
@ -28,7 +28,7 @@ struct quic_cc_drs {
|
|||||||
uint64_t delivered_time_ns;
|
uint64_t delivered_time_ns;
|
||||||
uint64_t first_sent_time_ns;
|
uint64_t first_sent_time_ns;
|
||||||
int is_cwnd_limited; /* boolean */
|
int is_cwnd_limited; /* boolean */
|
||||||
int app_limited; /* boolean */
|
int app_limited;
|
||||||
};
|
};
|
||||||
|
|
||||||
void quic_cc_drs_init(struct quic_cc_drs *drs);
|
void quic_cc_drs_init(struct quic_cc_drs *drs);
|
||||||
|
Loading…
Reference in New Issue
Block a user