mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-20 12:46:56 +00:00
MINOR: mux-quic: define new unions for flow-control fields
Define two new unions in the qcc structure named 'lfctl' and 'rfctl'. For the moment they are empty. They will be completed to store the initial and current level for flow-control on the local and remote side.
This commit is contained in:
parent
0dc40f06d1
commit
414df7684a
@ -42,6 +42,14 @@ struct qcc {
|
||||
} tx;
|
||||
} strms[QCS_MAX_TYPES];
|
||||
|
||||
/* Flow-control related fields which are enforced on our side. */
|
||||
struct {
|
||||
} lfctl;
|
||||
|
||||
/* Flow-control related fields from the endpoint which we must respect. */
|
||||
struct {
|
||||
} rfctl;
|
||||
|
||||
struct {
|
||||
uint64_t max_data; /* Maximum number of bytes which may be received */
|
||||
} rx;
|
||||
|
Loading…
Reference in New Issue
Block a user