comparison src/http/v3/ngx_http_v3.h @ 8986:6546c2ae1c7b quic

HTTP/3: unified hq code with regular HTTP/3 code. The change removes hq-specific request handler. Now hq requests are handled by the HTTP/3 request handler.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 19 Oct 2022 17:45:30 +0400
parents efbcdb9b37dc
children 1192923be0aa
comparison
equal deleted inserted replaced
8985:740d7d6e8ff0 8986:6546c2ae1c7b
143 uint64_t goaway_push_id; 143 uint64_t goaway_push_id;
144 144
145 off_t total_bytes; 145 off_t total_bytes;
146 off_t payload_bytes; 146 off_t payload_bytes;
147 147
148 ngx_uint_t goaway; /* unsigned goaway:1; */ 148 unsigned goaway:1;
149 #if (NGX_HTTP_V3_HQ)
150 unsigned hq:1;
151 #endif
149 152
150 ngx_connection_t *known_streams[NGX_HTTP_V3_MAX_KNOWN_STREAM]; 153 ngx_connection_t *known_streams[NGX_HTTP_V3_MAX_KNOWN_STREAM];
151 }; 154 };
152 155
153 156