CLEANUP: quic: remove a wrong comment about ->app_limited (drs)
authorFrederic Lecaille <flecaille@haproxy.com>
Thu, 12 Dec 2024 15:28:37 +0000 (16:28 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Mon, 6 Jan 2025 10:18:52 +0000 (11:18 +0100)
->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).

(cherry picked from commit e1d25cdbddfa344ceee7dcecd6a84eff4a209122)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>

include/haproxy/quic_cc_drs.h

index 89acb6f..cb086cd 100644 (file)
@@ -28,7 +28,7 @@ struct quic_cc_drs {
        uint64_t delivered_time_ns;
        uint64_t first_sent_time_ns;
        int is_cwnd_limited; /* boolean */
-       int app_limited; /* boolean */
+       int app_limited;
 };
 
 void quic_cc_drs_init(struct quic_cc_drs *drs);