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

Virtual host config file fix backported from v1.3

PR:
Obtained from:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2001-03-10 21:19:21 +00:00
parent d3dcba691d
commit 4ee1bd19ff
2 changed files with 33 additions and 1 deletions

View File

@@ -184,6 +184,7 @@ typedef struct {
apr_array_header_t *allowed_connect_ports;
const char *domain; /* domain name to use in absence of a domain name in the request */
int req; /* true if proxy requests are enabled */
char req_set;
float cache_completion; /* Force cache completion after this point */
enum {
via_off,
@@ -191,7 +192,9 @@ typedef struct {
via_block,
via_full
} viaopt; /* how to deal with proxy Via: headers */
char viaopt_set;
size_t recv_buffer_size;
char recv_buffer_size_set;
ap_cache_handle_t *cache;
} proxy_server_conf;