We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5d2f40 commit 118667cCopy full SHA for 118667c
quiche/src/lib.rs
@@ -4784,6 +4784,12 @@ impl Connection {
4784
aead,
4785
)?;
4786
4787
+ let sent_pkt_has_data = if path.recovery.gcongestion_enabled() {
4788
+ has_data || dgram_emitted
4789
+ } else {
4790
+ has_data
4791
+ };
4792
+
4793
let sent_pkt = recovery::Sent {
4794
pkt_num: pn,
4795
frames,
@@ -4799,7 +4805,7 @@ impl Connection {
4799
4805
is_app_limited: false,
4800
4806
tx_in_flight: 0,
4801
4807
lost: 0,
4802
- has_data: has_data | dgram_emitted,
4808
+ has_data: sent_pkt_has_data,
4803
4809
pmtud: pmtud_probe,
4804
4810
};
4811
0 commit comments