summaryrefslogtreecommitdiffstats
path: root/modules/proxy/proxy_util.c
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2006-03-30 20:32:53 +0200
committerJim Jagielski <jim@apache.org>2006-03-30 20:32:53 +0200
commitdede56b14dc6ba76822103ca30fd1b1734616b1d (patch)
tree49165d12b4be7446e3cf0c4f41580273355ac5df /modules/proxy/proxy_util.c
parentDocs update... (diff)
downloadapache2-dede56b14dc6ba76822103ca30fd1b1734616b1d.tar.xz
apache2-dede56b14dc6ba76822103ca30fd1b1734616b1d.zip
Document the removal of the flushing bandaid to a
runtime param. Since other protocols might benefit from this, remove the ajp_ prefixes, to make it more generic looking. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@390210 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/proxy_util.c')
-rw-r--r--modules/proxy/proxy_util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c
index 3a8f288a63..e28687ec25 100644
--- a/modules/proxy/proxy_util.c
+++ b/modules/proxy/proxy_util.c
@@ -1318,8 +1318,8 @@ PROXY_DECLARE(const char *) ap_proxy_add_worker(proxy_worker **worker,
(*worker)->hostname = uri.hostname;
(*worker)->port = uri.port;
(*worker)->id = proxy_lb_workers;
- (*worker)->ajp_flush_packets = ajp_flush_off;
- (*worker)->ajp_flush_wait = AJP_FLUSH_WAIT;
+ (*worker)->flush_packets = flush_off;
+ (*worker)->flush_wait = PROXY_FLUSH_WAIT;
/* Increase the total worker count */
proxy_lb_workers++;
init_conn_pool(p, *worker);