diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-04-27 21:32:50 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-04-27 21:32:50 +0300 |
commit | 891fedf52d2c4a85e724e9abbb403334ec55c861 (patch) | |
tree | 169ad5917b6a8f2476821f61179237f62d0d2e3a /src/http/v3/ngx_http_v3_parse.c | |
parent | 0ea300d35eb066631a21b2042cfe9cd2ea94b15f (diff) | |
download | nginx-891fedf52d2c4a85e724e9abbb403334ec55c861.tar.gz nginx-891fedf52d2c4a85e724e9abbb403334ec55c861.zip |
HTTP/3: renamed ngx_http_v3_client_XXX() functions.
The functions are renamed to ngx_http_v3_send_XXX() similar to
ngx_http_v3_send_settings() and ngx_http_v3_send_goaway().
Diffstat (limited to 'src/http/v3/ngx_http_v3_parse.c')
-rw-r--r-- | src/http/v3/ngx_http_v3_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/v3/ngx_http_v3_parse.c b/src/http/v3/ngx_http_v3_parse.c index 3d0b09197..def9aadc7 100644 --- a/src/http/v3/ngx_http_v3_parse.c +++ b/src/http/v3/ngx_http_v3_parse.c @@ -309,7 +309,7 @@ done: ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0, "http3 parse headers done"); if (st->prefix.insert_count > 0) { - if (ngx_http_v3_client_ack_header(c, c->quic->id) != NGX_OK) { + if (ngx_http_v3_send_ack_header(c, c->quic->id) != NGX_OK) { return NGX_ERROR; } } |