diff src/http/v3/ngx_http_v3_filter_module.c @ 8497:1fec68e322d0 quic

HTTP/3: client GOAWAY support.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 11 Jun 2021 13:24:24 +0300
parents 557dc6a06ba6
children 0ac25efb2da3
line wrap: on
line diff
--- a/src/http/v3/ngx_http_v3_filter_module.c
+++ b/src/http/v3/ngx_http_v3_filter_module.c
@@ -805,6 +805,12 @@ ngx_http_v3_push_resource(ngx_http_reque
         return NGX_ABORT;
     }
 
+    if (h3c->goaway_push_id != (uint64_t) -1) {
+        ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0,
+                       "http3 abort pushes due to goaway");
+        return NGX_ABORT;
+    }
+
     if (h3c->npushing >= h3scf->max_concurrent_pushes) {
         ngx_log_debug0(NGX_LOG_DEBUG_HTTP, c->log, 0,
                        "http3 abort pushes due to max_concurrent_pushes");