Skip to content

Commit

Permalink
WIP: quic: Useless dgram counter incrementation
Browse files Browse the repository at this point in the history
This prevents the BUG_ON() added to qc_send() to be triggered.
  • Loading branch information
haproxyFred committed Nov 15, 2024
1 parent dfc7312 commit 38a5f2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quic_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ static int qc_prep_pkts(struct quic_conn *qc, struct buffer *buf,
out:
if (first_pkt) {
qc_txb_store(buf, wrlen, first_pkt);
++dgram_cnt;
//++dgram_cnt;
}

if (cc && total) {
Expand Down

0 comments on commit 38a5f2f

Please sign in to comment.