Skip to content

Commit 0b9f50b

Browse files
committed
Release 4.0.9
1 parent c4f359f commit 0b9f50b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-06-12
2+
- 4.0.9
3+
- Fix bpq_count (issue #504).
4+
15
2024-03-12
26
- 4.0.8
37
- Fix RETIRE_CONNECTION_ID frame abuse.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = u'4.0'
2828
# The full version, including alpha/beta/rc tags
29-
release = u'4.0.8'
29+
release = u'4.0.9'
3030

3131

3232
# -- General configuration ---------------------------------------------------

include/lsquic.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727

2828
#define LSQUIC_MAJOR_VERSION 4
2929
#define LSQUIC_MINOR_VERSION 0
30-
#define LSQUIC_PATCH_VERSION 8
30+
#define LSQUIC_PATCH_VERSION 9
3131

3232
/**
3333
* Engine flags:

src/liblsquic/lsquic_send_ctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3169,7 +3169,7 @@ split_buffered_packet (lsquic_send_ctl_t *ctl,
31693169

31703170
LSQ_DEBUG("drop oversized buffered packet #%"PRIu64, packet_out->po_packno);
31713171
TAILQ_REMOVE(&packet_q->bpq_packets, packet_out, po_next);
3172-
++packet_q->bpq_count;
3172+
--packet_q->bpq_count;
31733173
assert(packet_out->po_loss_chain == packet_out);
31743174
send_ctl_destroy_packet(ctl, packet_out);
31753175
return 0;

0 commit comments

Comments
 (0)