comparison src/http/ngx_http_request.h @ 8226:268f4389130d quic

Refactored HTTP/3 parser.
author Roman Arutyunyan <arut@nginx.com>
date Wed, 18 Mar 2020 13:46:35 +0300
parents 38c0898b6df7
children d6feece1288a
comparison
equal deleted inserted replaced
8225:714a19dba6af 8226:268f4389130d
593 u_char *host_end; 593 u_char *host_end;
594 u_char *port_start; 594 u_char *port_start;
595 u_char *port_end; 595 u_char *port_end;
596 596
597 #if (NGX_HTTP_V3) 597 #if (NGX_HTTP_V3)
598 ngx_uint_t h3_length; 598 void *h3_parse;
599 ngx_uint_t h3_index;
600 ngx_uint_t h3_insert_count;
601 ngx_uint_t h3_sign;
602 ngx_uint_t h3_delta_base;
603 ngx_uint_t h3_huffman;
604 ngx_uint_t h3_dynamic;
605 ngx_uint_t h3_offset;
606 #endif 599 #endif
607 600
608 unsigned http_minor:16; 601 unsigned http_minor:16;
609 unsigned http_major:16; 602 unsigned http_major:16;
610 }; 603 };