Skip to content

Commit

Permalink
Release 1.21.2
Browse files Browse the repository at this point in the history
- [OPTIMIZATION] HPACK: use history to improve compression performance
  • Loading branch information
Dmitri Tikhonov committed May 13, 2019
1 parent d539a75 commit 8cba36d
Show file tree
Hide file tree
Showing 6 changed files with 241 additions and 58 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2019-05-13
- 1.21.2
- [OPTIMIZATION] HPACK: use history to improve compression performance

2019-05-06
- 1.21.1
- [BUGFIX] If FIN or RST not received, don't delay stream destruction.
Expand Down
2 changes: 1 addition & 1 deletion include/lsquic.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" {

#define LSQUIC_MAJOR_VERSION 1
#define LSQUIC_MINOR_VERSION 21
#define LSQUIC_PATCH_VERSION 1
#define LSQUIC_PATCH_VERSION 2

/**
* Engine flags:
Expand Down
2 changes: 1 addition & 1 deletion src/liblsquic/lsquic_frame_reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ decode_and_pass_payload (struct lsquic_frame_reader *fr)
enum frame_reader_error err;
int s;
uint32_t name_idx;
lshpack_strlen_t name_len, val_len;
unsigned name_len, val_len;
char *buf;
struct uncompressed_headers *uh = NULL;
void *hset = NULL;
Expand Down
Loading

0 comments on commit 8cba36d

Please sign in to comment.