comparison src/http/v3/ngx_http_v3_request.c @ 8989:7b83da3bdf9f quic

HTTP/3: renamed functions. ngx_http_v3_init() is renamed ngx_http_v3_init_stream(). ngx_http_v3_reset_connection() is renamed to ngx_http_v3_reset_stream().
author Roman Arutyunyan <arut@nginx.com>
date Mon, 22 Aug 2022 14:09:03 +0400
parents 1192923be0aa
children b0c2234aaa9f
comparison
equal deleted inserted replaced
8988:be39ffdf9208 8989:7b83da3bdf9f
53 { ngx_string("CONNECT"), NGX_HTTP_CONNECT } 53 { ngx_string("CONNECT"), NGX_HTTP_CONNECT }
54 }; 54 };
55 55
56 56
57 void 57 void
58 ngx_http_v3_init(ngx_connection_t *c) 58 ngx_http_v3_init_stream(ngx_connection_t *c)
59 { 59 {
60 ngx_http_connection_t *hc, *phc; 60 ngx_http_connection_t *hc, *phc;
61 ngx_http_v3_srv_conf_t *h3scf; 61 ngx_http_v3_srv_conf_t *h3scf;
62 ngx_http_core_loc_conf_t *clcf; 62 ngx_http_core_loc_conf_t *clcf;
63 63
360 ngx_http_v3_process_request(rev); 360 ngx_http_v3_process_request(rev);
361 } 361 }
362 362
363 363
364 void 364 void
365 ngx_http_v3_reset_connection(ngx_connection_t *c) 365 ngx_http_v3_reset_stream(ngx_connection_t *c)
366 { 366 {
367 ngx_http_v3_srv_conf_t *h3scf; 367 ngx_http_v3_srv_conf_t *h3scf;
368 368
369 h3scf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module); 369 h3scf = ngx_http_v3_get_module_srv_conf(c, ngx_http_v3_module);
370 370