]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Axe 'flushall' from 'mod_proxy_http2.c'.
authorChristophe Jaillet <jailletc36@apache.org>
Sat, 23 May 2020 11:54:10 +0000 (11:54 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sat, 23 May 2020 11:54:10 +0000 (11:54 +0000)
It is only set and never used.

This makes trunk and 2.4.x more in line.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878056 13f79535-47bb-0310-9956-ffa450edef68

modules/http2/mod_proxy_http2.c

index 83ae431c87594ee91802e795cd12550589ada914..893aa8fd316773e51099a27f9a38fc7b24e9aad2 100644 (file)
@@ -64,7 +64,6 @@ typedef struct h2_proxy_ctx {
     int capacity;
     
     unsigned is_ssl : 1;
-    unsigned flushall : 1;
     
     request_rec *r;            /* the request processed in this ctx */
     apr_status_t r_status;     /* status of request work */
@@ -337,7 +336,6 @@ static int proxy_http2_handler(request_rec *r,
     ctx->is_ssl = is_ssl;
     ctx->worker = worker;
     ctx->conf = conf;
-    ctx->flushall = apr_table_get(r->subprocess_env, "proxy-flushall")? 1 : 0;
     ctx->req_buffer_size = (32*1024);
     ctx->r = r;
     ctx->r_status = status = HTTP_SERVICE_UNAVAILABLE;