diff src/http/v3/ngx_http_v3_parse.h @ 8838:d6e191a583cc quic

HTTP/3: bulk parse functions. Previously HTTP/3 streams were parsed by one character. Now all parse functions receive buffers. This should optimize parsing time and CPU load.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 08 Jul 2021 21:52:47 +0300
parents 0ac25efb2da3
children
line wrap: on
line diff
--- a/src/http/v3/ngx_http_v3_parse.h
+++ b/src/http/v3/ngx_http_v3_parse.h
@@ -136,11 +136,11 @@ typedef struct {
  */
 
 ngx_int_t ngx_http_v3_parse_headers(ngx_connection_t *c,
-    ngx_http_v3_parse_headers_t *st, u_char ch);
+    ngx_http_v3_parse_headers_t *st, ngx_buf_t *b);
 ngx_int_t ngx_http_v3_parse_data(ngx_connection_t *c,
-    ngx_http_v3_parse_data_t *st, u_char ch);
+    ngx_http_v3_parse_data_t *st, ngx_buf_t *b);
 ngx_int_t ngx_http_v3_parse_uni(ngx_connection_t *c,
-    ngx_http_v3_parse_uni_t *st, u_char ch);
+    ngx_http_v3_parse_uni_t *st, ngx_buf_t *b);
 
 
 #endif /* _NGX_HTTP_V3_PARSE_H_INCLUDED_ */