ngx_http_v3_init() is renamed ngx_http_v3_init_stream().
ngx_http_v3_reset_connection() is renamed to ngx_http_v3_reset_stream().
#if (NGX_HTTP_V3)
if (hc->addr_conf->http3) {
- ngx_http_v3_init(c);
+ ngx_http_v3_init_stream(c);
return;
}
#endif
#if (NGX_HTTP_V3)
if (c->quic) {
- ngx_http_v3_reset_connection(c);
+ ngx_http_v3_reset_stream(c);
}
#endif
};
-void ngx_http_v3_init(ngx_connection_t *c);
-void ngx_http_v3_reset_connection(ngx_connection_t *c);
+void ngx_http_v3_init_stream(ngx_connection_t *c);
+void ngx_http_v3_reset_stream(ngx_connection_t *c);
ngx_int_t ngx_http_v3_init_session(ngx_connection_t *c);
ngx_int_t ngx_http_v3_check_flood(ngx_connection_t *c);
void ngx_http_v3_shutdown(ngx_connection_t *c);
void
-ngx_http_v3_init(ngx_connection_t *c)
+ngx_http_v3_init_stream(ngx_connection_t *c)
{
ngx_http_connection_t *hc, *phc;
ngx_http_v3_srv_conf_t *h3scf;
void
-ngx_http_v3_reset_connection(ngx_connection_t *c)
+ngx_http_v3_reset_stream(ngx_connection_t *c)
{
ngx_http_v3_srv_conf_t *h3scf;