1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Move worker params parsing to a separate function.

The same will be used for creating ProxyPass connection pools.

Added ttl param to worker for maintaining reslist.

Submitted by: mturk


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2004-08-11 21:29:57 +00:00
parent e881f5cc72
commit 8dda80bccc
2 changed files with 51 additions and 11 deletions

View File

@@ -223,6 +223,8 @@ typedef struct {
int min; /* Desired minimum number of available connections */
int smax; /* Soft maximum on the total number of connections */
int hmax; /* Hard maximum on the total number of connections */
apr_interval_time_t ttl; /* maximum amount of time in seconds a connection
* may be available while exceeding the soft limit */
proxy_conn_pool *cp; /* Connection pool to use */
void *opaque; /* per scheme worker data */
} proxy_worker;