diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2023-05-12 10:02:10 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2023-05-12 10:02:10 +0400 |
| commit | e4edf78bac950213e00bb97ac46ece807f3cc073 (patch) | |
| tree | d5d58d85e5997f1854d558b903bb74f410a15f02 /src/http/v3/ngx_http_v3.h | |
| parent | 0a3c79614521d7612b63eff4e09c25ed219fb65b (diff) | |
| download | nginx-e4edf78bac950213e00bb97ac46ece807f3cc073.tar.gz nginx-e4edf78bac950213e00bb97ac46ece807f3cc073.tar.bz2 | |
HTTP/3: removed server push support.
Diffstat (limited to 'src/http/v3/ngx_http_v3.h')
| -rw-r--r-- | src/http/v3/ngx_http_v3.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/http/v3/ngx_http_v3.h b/src/http/v3/ngx_http_v3.h index 2c05f089f..94b0d3e78 100644 --- a/src/http/v3/ngx_http_v3.h +++ b/src/http/v3/ngx_http_v3.h @@ -106,19 +106,11 @@ typedef struct { ngx_flag_t enable_hq; size_t max_table_capacity; ngx_uint_t max_blocked_streams; - ngx_uint_t max_concurrent_pushes; ngx_uint_t max_concurrent_streams; ngx_quic_conf_t quic; } ngx_http_v3_srv_conf_t; -typedef struct { - ngx_flag_t push_preload; - ngx_flag_t push; - ngx_array_t *pushes; -} ngx_http_v3_loc_conf_t; - - struct ngx_http_v3_parse_s { size_t header_limit; ngx_http_v3_parse_headers_t headers; @@ -136,11 +128,6 @@ struct ngx_http_v3_session_s { ngx_queue_t blocked; ngx_uint_t nblocked; - ngx_queue_t pushing; - ngx_uint_t npushing; - uint64_t next_push_id; - uint64_t max_push_id; - uint64_t goaway_push_id; uint64_t next_request_id; off_t total_bytes; |
