comparison src/http/ngx_http.h @ 8295:5649079a41f4 quic

Parsing HTTP/3 request body.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 27 Mar 2020 19:41:06 +0300
parents 38c0898b6df7
children 0d2b2664b41c
comparison
equal deleted inserted replaced
8294:32db41d603cd 8295:5649079a41f4
61 61
62 struct ngx_http_chunked_s { 62 struct ngx_http_chunked_s {
63 ngx_uint_t state; 63 ngx_uint_t state;
64 off_t size; 64 off_t size;
65 off_t length; 65 off_t length;
66 #if (NGX_HTTP_V3)
67 void *h3_parse;
68 #endif
66 }; 69 };
67 70
68 71
69 typedef struct { 72 typedef struct {
70 ngx_uint_t http_version; 73 ngx_uint_t http_version;