aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2022-08-22 14:09:03 +0400
committerRoman Arutyunyan <arut@nginx.com>2022-08-22 14:09:03 +0400
commit8a1deaca78d65f4db82f856e22dcf879d1cec479 (patch)
treebfc9633de5dcf7f5cb886d8f198be8762a2fdb02 /src/http/ngx_http_request.c
parent7e3aa23991cbab236617f15ab3602c1b43b2aae1 (diff)
downloadnginx-8a1deaca78d65f4db82f856e22dcf879d1cec479.tar.gz
nginx-8a1deaca78d65f4db82f856e22dcf879d1cec479.zip
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().
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r--src/http/ngx_http_request.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index 86da94262..8cc3cff24 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -326,7 +326,7 @@ ngx_http_init_connection(ngx_connection_t *c)
#if (NGX_HTTP_V3)
if (hc->addr_conf->http3) {
- ngx_http_v3_init(c);
+ ngx_http_v3_init_stream(c);
return;
}
#endif
@@ -3786,7 +3786,7 @@ ngx_http_close_connection(ngx_connection_t *c)
#if (NGX_HTTP_V3)
if (c->quic) {
- ngx_http_v3_reset_connection(c);
+ ngx_http_v3_reset_stream(c);
}
#endif