diff options
author | Ruslan Ermilov <ru@nginx.com> | 2021-12-28 15:01:02 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2021-12-28 15:01:02 +0300 |
commit | 05a32b5ec44e8fb54ea1976ec025a6ea650c36f9 (patch) | |
tree | 926719731b0358f91d278a45ad8d0616c96168bc | |
parent | 3662e0c83b41f0dceb0d7deac344cb9e38460476 (diff) | |
download | nginx-05a32b5ec44e8fb54ea1976ec025a6ea650c36f9.tar.gz nginx-05a32b5ec44e8fb54ea1976ec025a6ea650c36f9.zip |
Fixed a mismerge in 5c86189a1c1b.
-rw-r--r-- | src/http/ngx_http.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index a5bdeaadd..91731c812 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -176,6 +176,7 @@ ngx_int_t ngx_http_set_default_types(ngx_conf_t *cf, ngx_array_t **types, ngx_uint_t ngx_http_degraded(ngx_http_request_t *); #endif + #if (NGX_HTTP_V2 || NGX_HTTP_V3) ngx_int_t ngx_http_huff_decode(u_char *state, u_char *src, size_t len, u_char **dst, ngx_uint_t last, ngx_log_t *log); @@ -183,6 +184,7 @@ size_t ngx_http_huff_encode(u_char *src, size_t len, u_char *dst, ngx_uint_t lower); #endif + extern ngx_module_t ngx_http_module; extern ngx_str_t ngx_http_html_default_types[]; |