summaryrefslogtreecommitdiffhomepage
path: root/src/http/v2/ngx_http_v2.h
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@nginx.com>2021-12-21 07:54:16 +0300
committerRuslan Ermilov <ru@nginx.com>2021-12-21 07:54:16 +0300
commit363505e806feebb7ceb1f9edb0e3f75c1253384f (patch)
tree96b09e11f52821d4e54fb33543abb0af443f042e /src/http/v2/ngx_http_v2.h
parentb5d022e79756daf0ca2a5221a9e1dddb910d13da (diff)
downloadnginx-363505e806feebb7ceb1f9edb0e3f75c1253384f.tar.gz
nginx-363505e806feebb7ceb1f9edb0e3f75c1253384f.tar.bz2
Moved Huffman coding out of HTTP/2.
ngx_http_v2_huff_decode.c and ngx_http_v2_huff_encode.c are renamed to ngx_http_huff_decode.c and ngx_http_huff_encode.c.
Diffstat (limited to 'src/http/v2/ngx_http_v2.h')
-rw-r--r--src/http/v2/ngx_http_v2.h6
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 0eceae3d5..70ee287ae 100644
--- a/src/http/v2/ngx_http_v2.h
+++ b/src/http/v2/ngx_http_v2.h
@@ -311,12 +311,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)