netty5/codec-http2/src/test/resources/io/netty/handler/codec/http2/testdata/testEviction.json
Scott Mitchell f9001b9fc0 HTTP/2 move internal HPACK classes to the http2 package
Motivation:
The internal.hpack classes are no longer exposed in our public APIs and can be made package private in the http2 package.

Modifications:
- Make the hpack classes package private in the http2 package

Result:
Less APIs exposed as public.
2017-03-02 07:42:41 -08:00

58 lines
1.3 KiB
JSON

{
"max_header_table_size": 128,
"header_blocks":
[
{
"headers": [
{ ":path": "/somepath" },
{ "x-custom": "val1" },
{ "x-custom": "val2" },
{ "x-custom": "val3" }
],
"encoded": [
"4487 6107 a4b5 8d33 ff40 86f2 b12d 424f",
"4f83 ee3a 037e 83ee 3a05 7e83 ee3a 19"
],
"dynamic_table": [
{ "x-custom": "val3" },
{ "x-custom": "val2" }
],
"table_size": 88
},
{
"headers": [
{ ":path": "/somepath" },
{ "x-custom": "val4" },
{ "x-custom": "val5" },
{ "x-custom": "val6" }
],
"encoded": [
"4487 6107 a4b5 8d33 ff40 86f2 b12d 424f",
"4f83 ee3a 1a7e 83ee 3a1b 7e83 ee3a 1c"
],
"dynamic_table": [
{ "x-custom": "val6" },
{ "x-custom": "val5" }
],
"table_size": 88
},
{
"headers": [
{ ":path": "/somepath" },
{ "x-custom": "val1" },
{ "x-custom": "val2" },
{ "x-custom": "val3" }
],
"encoded": [
"4487 6107 a4b5 8d33 ff40 86f2 b12d 424f",
"4f83 ee3a 037e 83ee 3a05 7e83 ee3a 19"
],
"dynamic_table": [
{ "x-custom": "val3" },
{ "x-custom": "val2" }
],
"table_size": 88
}
]
}