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

Add the ProxyRemoteMatch directive to the mod_proxy

code. Doccos to be done soon


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93597 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2002-02-27 15:49:01 +00:00
parent 3b5912070c
commit a1de05995b
3 changed files with 44 additions and 7 deletions

View File

@@ -136,6 +136,8 @@ struct proxy_remote {
const char *protocol; /* the scheme used to talk to this proxy */
const char *hostname; /* the hostname of this proxy */
apr_port_t port; /* the port for this proxy */
regex_t *regexp; /* compiled regex (if any) for the remote */
int use_regex; /* simple boolean. True if we have a regex pattern */
};
struct proxy_alias {