Skip to content

Commit a400cfb

Browse files
committed
to be merged into quic_cc modifs.
1 parent bb592f4 commit a400cfb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

include/haproxy/quic_cc-t.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ struct quic_cc_path {
122122
uint64_t ifae_pkts;
123123
uint64_t delivery_rate; /* bytes per second */
124124
size_t send_quantum;
125+
uint32_t recovery_start_ts;
125126
};
126127

127128
struct quic_cc_algo {

include/haproxy/quic_cc.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ static inline void quic_cc_path_init(struct quic_cc_path *path, int ipv4, unsign
9797
quic_cc_init(&path->cc, algo, qc);
9898
path->delivery_rate = 0;
9999
path->send_quantum = 64 * 1024;
100+
path->recovery_start_ts = TICK_ETERNITY;
100101
}
101102

102103
/* Return the remaining <room> available on <path> QUIC path for prepared data

0 commit comments

Comments
 (0)