mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-21 14:17:30 -04:00
CLEANUP: mux-quic: remove unused qcc member send_retry_list
Remove unused fields send_retry_list from qcc and its corresponding attach element el from qcs. This should be backported up to 3.1.
This commit is contained in:
parent
2e3542bec6
commit
17bfe93768
1 changed files with 0 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue