Skip to content

Commit

Permalink
Release 4.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gwanglst committed Jun 12, 2024
1 parent c4f359f commit 0b9f50b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-06-12
- 4.0.9
- Fix bpq_count (issue #504).

2024-03-12
- 4.0.8
- Fix RETIRE_CONNECTION_ID frame abuse.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = u'4.0'
# The full version, including alpha/beta/rc tags
release = u'4.0.8'
release = u'4.0.9'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion include/lsquic.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" {

#define LSQUIC_MAJOR_VERSION 4
#define LSQUIC_MINOR_VERSION 0
#define LSQUIC_PATCH_VERSION 8
#define LSQUIC_PATCH_VERSION 9

/**
* Engine flags:
Expand Down
2 changes: 1 addition & 1 deletion src/liblsquic/lsquic_send_ctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -3169,7 +3169,7 @@ split_buffered_packet (lsquic_send_ctl_t *ctl,

LSQ_DEBUG("drop oversized buffered packet #%"PRIu64, packet_out->po_packno);
TAILQ_REMOVE(&packet_q->bpq_packets, packet_out, po_next);
++packet_q->bpq_count;
--packet_q->bpq_count;
assert(packet_out->po_loss_chain == packet_out);
send_ctl_destroy_packet(ctl, packet_out);
return 0;
Expand Down

0 comments on commit 0b9f50b

Please sign in to comment.