]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: mux-quic: remove unused qcc member send_retry_list
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 12 Dec 2024 15:29:32 +0000 (16:29 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Wed, 18 Dec 2024 08:20:20 +0000 (09:20 +0100)
Remove unused fields send_retry_list from qcc and its corresponding
attach element el from qcs.

This should be backported up to 3.1.

include/haproxy/mux_quic-t.h

index 2fd3edab86fef166427d8adc3ceb18c2309cbfb2..be55a5a7eb07951dae11fd0cac6436eac56bdfbd 100644 (file)
@@ -82,7 +82,6 @@ struct qcc {
 
        struct eb_root streams_by_id; /* all active streams by their ID */
 
-       struct list send_retry_list; /* list of qcs eligible to send retry */
        struct list send_list; /* list of qcs ready to send (STREAM, STOP_SENDING or RESET_STREAM emission) */
        struct list fctl_list; /* list of sending qcs blocked on conn flow control */
        struct list buf_wait_list; /* list of qcs blocked on stream desc buf */
@@ -151,7 +150,6 @@ struct qcs {
        uint64_t id;
        struct qc_stream_desc *stream;
 
-       struct list el; /* element of qcc.send_retry_list */
        struct list el_send; /* element of qcc.send_list */
        struct list el_opening; /* element of qcc.opening_list */
        struct list el_fctl; /* element of qcc.fctl_list */