Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
8a552631
Unverified
Commit
8a552631
authored
Jan 11, 2022
by
Tatsuhiro Tsujikawa
Committed by
GitHub
Jan 11, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1667 from nghttp2/keep-hd-table-size
Fix decoder table size update
parents
cff81069
deb390cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
10 deletions
+11
-10
lib/nghttp2_hd.c
lib/nghttp2_hd.c
+5
-4
tests/nghttp2_hd_test.c
tests/nghttp2_hd_test.c
+5
-5
tests/nghttp2_session_test.c
tests/nghttp2_session_test.c
+1
-1
No files found.
lib/nghttp2_hd.c
View file @
8a552631
...
...
@@ -1263,6 +1263,8 @@ int nghttp2_hd_inflate_change_table_size(
return
NGHTTP2_ERR_INVALID_STATE
;
}
inflater
->
settings_hd_table_bufsize_max
=
settings_max_dynamic_table_size
;
/* It seems that encoder is not required to send dynamic table size
update if the table size is not changed after applying
SETTINGS_HEADER_TABLE_SIZE. RFC 7541 is ambiguous here, but this
...
...
@@ -1275,13 +1277,12 @@ int nghttp2_hd_inflate_change_table_size(
/* Remember minimum value, and validate that encoder sends the
value less than or equal to this. */
inflater
->
min_hd_table_bufsize_max
=
settings_max_dynamic_table_size
;
}
inflater
->
settings_
hd_table_bufsize_max
=
settings_max_dynamic_table_size
;
inflater
->
ctx
.
hd_table_bufsize_max
=
settings_max_dynamic_table_size
;
inflater
->
ctx
.
hd_table_bufsize_max
=
settings_max_dynamic_table_size
;
hd_context_shrink_table_size
(
&
inflater
->
ctx
,
NULL
);
}
hd_context_shrink_table_size
(
&
inflater
->
ctx
,
NULL
);
return
0
;
}
...
...
tests/nghttp2_hd_test.c
View file @
8a552631
...
...
@@ -734,7 +734,7 @@ void test_nghttp2_hd_change_table_size(void) {
CU_ASSERT
(
4096
==
deflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8000
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
4096
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8000
==
inflater
.
settings_hd_table_bufsize_max
);
/* This will emit encoding context update with header table size 4096 */
...
...
@@ -830,8 +830,8 @@ void test_nghttp2_hd_change_table_size(void) {
CU_ASSERT
(
8000
==
deflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8000
==
nghttp2_hd_deflate_get_max_dynamic_table_size
(
&
deflater
));
CU_ASSERT
(
8000
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8000
==
nghttp2_hd_inflate_get_max_dynamic_table_size
(
&
inflater
));
CU_ASSERT
(
4096
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
4096
==
nghttp2_hd_inflate_get_max_dynamic_table_size
(
&
inflater
));
CU_ASSERT
(
8000
==
inflater
.
settings_hd_table_bufsize_max
);
rv
=
nghttp2_hd_deflate_hd_bufs
(
&
deflater
,
&
bufs
,
nva
,
2
);
...
...
@@ -856,8 +856,8 @@ void test_nghttp2_hd_change_table_size(void) {
CU_ASSERT
(
8192
==
deflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8192
==
nghttp2_hd_deflate_get_max_dynamic_table_size
(
&
deflater
));
CU_ASSERT
(
16383
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
16383
==
nghttp2_hd_inflate_get_max_dynamic_table_size
(
&
inflater
));
CU_ASSERT
(
8000
==
inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
8000
==
nghttp2_hd_inflate_get_max_dynamic_table_size
(
&
inflater
));
CU_ASSERT
(
16383
==
inflater
.
settings_hd_table_bufsize_max
);
rv
=
nghttp2_hd_deflate_hd_bufs
(
&
deflater
,
&
bufs
,
nva
,
2
);
...
...
tests/nghttp2_session_test.c
View file @
8a552631
...
...
@@ -5720,7 +5720,7 @@ void test_nghttp2_submit_settings(void) {
nghttp2_frame_settings_free
(
&
ack_frame
.
settings
,
mem
);
CU_ASSERT
(
16
*
1024
==
session
->
local_settings
.
initial_window_size
);
CU_ASSERT
(
1
023
==
session
->
hd_inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
1
11
==
session
->
hd_inflater
.
ctx
.
hd_table_bufsize_max
);
CU_ASSERT
(
111
==
session
->
hd_inflater
.
min_hd_table_bufsize_max
);
CU_ASSERT
(
50
==
session
->
local_settings
.
max_concurrent_streams
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment