diff options
author | Roman Arutyunyan <arut@nginx.com> | 2022-08-22 14:09:03 +0400 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2022-08-22 14:09:03 +0400 |
commit | 8a1deaca78d65f4db82f856e22dcf879d1cec479 (patch) | |
tree | bfc9633de5dcf7f5cb886d8f198be8762a2fdb02 /src/http/v3/ngx_http_v3_request.c | |
parent | 7e3aa23991cbab236617f15ab3602c1b43b2aae1 (diff) | |
download | nginx-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/v3/ngx_http_v3_request.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index c75bc19c5..cbfede836 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -55,7 +55,7 @@ static const struct { 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; @@ -362,7 +362,7 @@ ngx_http_v3_wait_request_handler(ngx_event_t *rev) 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; |