diff options
| author | Vladimir Homutov <vl@nginx.com> | 2021-08-05 11:09:13 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2021-08-05 11:09:13 +0300 |
| commit | d895a831ae76d97999de777d9289e5e6e29c5741 (patch) | |
| tree | 0758aa4b3e8cab42c7d83bcc7f21d22b6adcbc6d /src/http/v2 | |
| parent | af83b3c32c26646f2b3bf1b8f097eb175f6b5bb5 (diff) | |
| download | nginx-d895a831ae76d97999de777d9289e5e6e29c5741.tar.gz nginx-d895a831ae76d97999de777d9289e5e6e29c5741.tar.bz2 | |
HTTP/3: got rid of HTTP/2 module dependency.
The Huffman encoder/decoder now can be built separately from HTTP/2 module.
Diffstat (limited to 'src/http/v2')
| -rw-r--r-- | src/http/v2/ngx_http_v2.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/http/v2/ngx_http_v2.h b/src/http/v2/ngx_http_v2.h index 349229711..65fc65812 100644 --- a/src/http/v2/ngx_http_v2.h +++ b/src/http/v2/ngx_http_v2.h @@ -312,12 +312,6 @@ ngx_int_t ngx_http_v2_add_header(ngx_http_v2_connection_t *h2c, ngx_int_t ngx_http_v2_table_size(ngx_http_v2_connection_t *h2c, size_t size); -ngx_int_t ngx_http_v2_huff_decode(u_char *state, u_char *src, size_t len, - u_char **dst, ngx_uint_t last, ngx_log_t *log); -size_t ngx_http_v2_huff_encode(u_char *src, size_t len, u_char *dst, - ngx_uint_t lower); - - #define ngx_http_v2_prefix(bits) ((1 << (bits)) - 1) |
