diff options
author | Jean-Frederic Clere <jfclere@apache.org> | 2022-03-30 16:42:14 +0200 |
---|---|---|
committer | Jean-Frederic Clere <jfclere@apache.org> | 2022-03-30 16:42:14 +0200 |
commit | 2bcf00780e1875dd522031846fc9561f16bf5757 (patch) | |
tree | dcdbbf66bcb9e28968d3a39c9dba91aa2f4b6977 /modules/proxy/mod_proxy.h | |
parent | ignore file in git that come from `make check` (diff) | |
download | apache2-2bcf00780e1875dd522031846fc9561f16bf5757.tar.xz apache2-2bcf00780e1875dd522031846fc9561f16bf5757.zip |
Add WorkerBalancerGrowth. To allow creation of workers
to dynamically added balancers.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899390 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/mod_proxy.h')
-rw-r--r-- | modules/proxy/mod_proxy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index 2eac740dac..8281edd14d 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -163,6 +163,7 @@ typedef struct { int req; /* true if proxy requests are enabled */ int max_balancers; /* maximum number of allowed balancers */ int bgrowth; /* number of post-config balancers can added */ + int wbgrowth; /* number of post-config work per balancer that can added */ enum { via_off, via_on, @@ -198,6 +199,7 @@ typedef struct { unsigned int proxy_status_set:1; unsigned int source_address_set:1; unsigned int bgrowth_set:1; + unsigned int wbgrowth_set:1; unsigned int bal_persist:1; unsigned int inherit:1; unsigned int inherit_set:1; |