diff src/http/v3/ngx_http_v3_parse.c @ 8771:0981329169ea quic

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().
author Roman Arutyunyan <arut@nginx.com>
date Tue, 27 Apr 2021 21:32:50 +0300
parents 687445803d0f
children 345370fdd32d
line wrap: on
line diff
--- 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;
         }
     }