diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2024-11-15 08:23:53 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arutyunyan.roman@gmail.com> | 2025-06-19 10:19:57 +0400 |
| commit | 662c1dd2a97afd6c7ca09b8f5a74347ee017b86b (patch) | |
| tree | d1d7ada1eb9149fc10c77e4aa73892b7a9863a54 /src/http/v2/ngx_http_v2.h | |
| parent | ea001feb10a294ccd53c896b9919f17f5cbda468 (diff) | |
| download | nginx-662c1dd2a97afd6c7ca09b8f5a74347ee017b86b.tar.gz nginx-662c1dd2a97afd6c7ca09b8f5a74347ee017b86b.tar.bz2 | |
Upstream: early hints support.
The change implements processing upstream early hints response in
ngx_http_proxy_module and ngx_http_grpc_module. A new directive
"early_hints" enables sending early hints to the client. By default,
sending early hints is disabled.
Example:
map $http_sec_fetch_mode $early_hints {
navigate $http2$http3;
}
early_hints $early_hints;
proxy_pass http://example.com;
Diffstat (limited to 'src/http/v2/ngx_http_v2.h')
| -rw-r--r-- | src/http/v2/ngx_http_v2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/v2/ngx_http_v2.h b/src/http/v2/ngx_http_v2.h index 6751b3026..9605c8a23 100644 --- a/src/http/v2/ngx_http_v2.h +++ b/src/http/v2/ngx_http_v2.h @@ -213,6 +213,7 @@ struct ngx_http_v2_stream_s { ngx_pool_t *pool; + unsigned initialized:1; unsigned waiting:1; unsigned blocked:1; unsigned exhausted:1; |
