diff options
author | Ruslan Ermilov <ru@nginx.com> | 2021-12-21 07:54:16 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2021-12-21 07:54:16 +0300 |
commit | 363505e806feebb7ceb1f9edb0e3f75c1253384f (patch) | |
tree | 96b09e11f52821d4e54fb33543abb0af443f042e /src/http/v2/ngx_http_v2_encode.c | |
parent | b5d022e79756daf0ca2a5221a9e1dddb910d13da (diff) | |
download | nginx-363505e806feebb7ceb1f9edb0e3f75c1253384f.tar.gz nginx-363505e806feebb7ceb1f9edb0e3f75c1253384f.zip |
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_encode.c')
-rw-r--r-- | src/http/v2/ngx_http_v2_encode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v2/ngx_http_v2_encode.c b/src/http/v2/ngx_http_v2_encode.c index ac792084e..8798aa9ae 100644 --- a/src/http/v2/ngx_http_v2_encode.c +++ b/src/http/v2/ngx_http_v2_encode.c @@ -20,7 +20,7 @@ ngx_http_v2_string_encode(u_char *dst, u_char *src, size_t len, u_char *tmp, { size_t hlen; - hlen = ngx_http_v2_huff_encode(src, len, tmp, lower); + hlen = ngx_http_huff_encode(src, len, tmp, lower); if (hlen > 0) { *dst = NGX_HTTP_V2_ENCODE_HUFF; |