TSG-20527 http2解析层支持zstd编解码

This commit is contained in:
fengweihao
2024-04-28 15:56:01 +08:00
parent 93c626de6d
commit 397a6aba93
9 changed files with 824 additions and 264 deletions

View File

@@ -27,11 +27,11 @@ enum h2_read_state
struct tfe_h2_payload
{
int gzip;
int encode_type;
uint8_t flags;
ssize_t padlen;
struct z_stream_st *inflate;
struct z_stream_st *deflate;
struct http2_codec_ctx *inflate;
struct http2_codec_ctx *deflate;
struct evbuffer * evbuf_body;
};