comparison src/http/ngx_http_request.h @ 8481:0d2b2664b41c quic

QUIC: added "quic" listen parameter. The parameter allows processing HTTP/0.9-2 over QUIC. Also, introduced ngx_http_quic_module and moved QUIC settings there
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Jul 2020 23:09:22 +0300
parents d6feece1288a
children 9dce2978e4fd
comparison
equal deleted inserted replaced
8480:f537f99b86ee 8481:0d2b2664b41c
322 ngx_int_t nbusy; 322 ngx_int_t nbusy;
323 323
324 ngx_chain_t *free; 324 ngx_chain_t *free;
325 325
326 unsigned ssl:1; 326 unsigned ssl:1;
327 unsigned quic:1;
328 unsigned proxy_protocol:1; 327 unsigned proxy_protocol:1;
329 } ngx_http_connection_t; 328 } ngx_http_connection_t;
330 329
331 330
332 typedef void (*ngx_http_cleanup_pt)(void *data); 331 typedef void (*ngx_http_cleanup_pt)(void *data);