comparison src/http/ngx_http.h @ 8942:5c86189a1c1b quic

Merged with the default branch.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 24 Dec 2021 15:53:59 +0300
parents 33226ac61076 336084ff943b
children 584e9951b044
comparison
equal deleted inserted replaced
8941:0433e69f5425 8942:5c86189a1c1b
175 #if (NGX_HTTP_DEGRADATION) 175 #if (NGX_HTTP_DEGRADATION)
176 ngx_uint_t ngx_http_degraded(ngx_http_request_t *); 176 ngx_uint_t ngx_http_degraded(ngx_http_request_t *);
177 #endif 177 #endif
178 178
179 #if (NGX_HTTP_V2 || NGX_HTTP_V3) 179 #if (NGX_HTTP_V2 || NGX_HTTP_V3)
180 ngx_int_t ngx_http_v2_huff_decode(u_char *state, u_char *src, size_t len, 180 ngx_int_t ngx_http_huff_decode(u_char *state, u_char *src, size_t len,
181 u_char **dst, ngx_uint_t last, ngx_log_t *log); 181 u_char **dst, ngx_uint_t last, ngx_log_t *log);
182 size_t ngx_http_v2_huff_encode(u_char *src, size_t len, u_char *dst, 182 size_t ngx_http_huff_encode(u_char *src, size_t len, u_char *dst,
183 ngx_uint_t lower); 183 ngx_uint_t lower);
184 #endif 184 #endif
185 185
186 extern ngx_module_t ngx_http_module; 186 extern ngx_module_t ngx_http_module;
187 187